From b3866b05c14bd0f1fff4c54051f522e03e2bec36 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 3 Mar 2012 15:09:20 +0000 Subject: 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 --- test/integration/projects_test.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'test/integration/projects_test.rb') diff --git a/test/integration/projects_test.rb b/test/integration/projects_test.rb index 890250c8a..1abe6ad96 100644 --- a/test/integration/projects_test.rb +++ b/test/integration/projects_test.rb @@ -18,7 +18,7 @@ require File.expand_path('../../test_helper', __FILE__) class ProjectsTest < ActionController::IntegrationTest - fixtures :projects, :users, :members + fixtures :projects, :users, :members, :enabled_modules def test_archive_project subproject = Project.find(1).children.first @@ -41,4 +41,11 @@ class ProjectsTest < ActionController::IntegrationTest get "projects/1" assert_response :success end + + def test_modules_should_not_allow_get + assert_no_difference 'EnabledModule.count' do + get '/projects/1/modules', {:enabled_module_names => ['']}, credentials('jsmith') + assert_response :method_not_allowed + end + end end -- cgit v1.2.3