openstreetmap-website/test/system/user_suspension_test.rb
2025-02-17 17:14:31 +03:00

15 lines
387 B
Ruby

require "application_system_test_case"
class UserSuspensionTest < ApplicationSystemTestCase
test "User shown a message when suspended mid-session" do
user = create(:user)
sign_in_as(user)
visit account_path
assert_content "My Account"
user.suspend!
visit account_path
assert_content "This decision will be reviewed by an administrator shortly"
end
end