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.suspend!
- visit edit_account_path
+ visit account_path
assert_content "This decision will be reviewed by an administrator shortly"
end
end