X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/4bed9c12a0b5e8302098f1646802ce247abf95ee..b32e23b4126ded330e9bfd15109521a1f281cbef:/test/system/user_suspension_test.rb?ds=sidebyside diff --git a/test/system/user_suspension_test.rb b/test/system/user_suspension_test.rb index 075303ff0..55c4b82d7 100644 --- a/test/system/user_suspension_test.rb +++ b/test/system/user_suspension_test.rb @@ -4,12 +4,12 @@ class UserSuspensionTest < ApplicationSystemTestCase test "User shown a message when suspended mid-session" do user = create(:user) sign_in_as(user) - visit edit_account_path - assert_content "My Settings" + visit account_path + assert_content "My Account" - user.update(:status => "suspended") + user.suspend! - visit edit_account_path + visit account_path assert_content "This decision will be reviewed by an administrator shortly" end end