Revoking administrator role on current user should fail
Fixes #1697 Closes #1701
This commit is contained in:
parent
965123372d
commit
e21c967fdd
3 changed files with 12 additions and 1 deletions
|
@ -134,5 +134,10 @@ class UserRolesControllerTest < ActionController::TestCase
|
|||
end
|
||||
assert_redirected_to user_path(target_user.display_name)
|
||||
assert_equal "The string `no_such_role' is not a valid role.", flash[:error]
|
||||
|
||||
# Revoking administrator role from current user should fail
|
||||
post :revoke, :params => { :display_name => administrator_user.display_name, :role => "administrator" }
|
||||
assert_redirected_to user_path(administrator_user.display_name)
|
||||
assert_equal "Cannot revoke administrator role from current user.", flash[:error]
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue