Removes all #verify calls in controllers. Verification is handled at routing level now that the default route is removed.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9061 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2012-03-03 15:09:20 +00:00
parent bf8f854546
commit b3866b05c1
28 changed files with 56 additions and 98 deletions

View File

@@ -289,13 +289,6 @@ class UsersControllerTest < ActionController::TestCase
assert_nil User.find_by_id(2)
end
def test_destroy_should_not_accept_get_requests
assert_no_difference 'User.count' do
get :destroy, :id => 2
end
assert_response 405
end
def test_destroy_should_be_denied_for_non_admin_users
@request.session[:user_id] = 3