budget/test/system/sessions_test.rb

34 lines
702 B
Ruby
Raw Normal View History

require "application_system_test_case"
class SessionsTest < ApplicationSystemTestCase
setup do
@user = users(:one)
end
test "should create session" do
visit new_session_url
fill_in "Email", with: @user.email
fill_in "Password", with: "secret"
click_on "Create Session"
assert_text "Session was successfully created"
end
test "should destroy Session" do
2024-08-16 19:21:44 -04:00
visit new_session_url
fill_in "Email", with: @user.email
fill_in "Password", with: "secret"
click_on "Create Session"
assert_text "Session was successfully created"
visit root_url
click_on "Log out", match: :first
assert_text "Session was successfully destroyed"
end
end