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:
@@ -311,12 +311,6 @@ class ProjectsControllerTest < ActionController::TestCase
|
||||
end
|
||||
end
|
||||
|
||||
def test_create_should_not_accept_get
|
||||
@request.session[:user_id] = 1
|
||||
get :create
|
||||
assert_response :method_not_allowed
|
||||
end
|
||||
|
||||
def test_show_by_id
|
||||
get :show, :id => 1
|
||||
assert_response :success
|
||||
@@ -412,12 +406,6 @@ class ProjectsControllerTest < ActionController::TestCase
|
||||
assert_equal ['documents', 'issue_tracking', 'repository'], Project.find(1).enabled_module_names.sort
|
||||
end
|
||||
|
||||
def test_modules_should_not_allow_get
|
||||
@request.session[:user_id] = 1
|
||||
get :modules, :id => 1
|
||||
assert_response :method_not_allowed
|
||||
end
|
||||
|
||||
def test_destroy_without_confirmation
|
||||
@request.session[:user_id] = 1 # admin
|
||||
delete :destroy, :id => 1
|
||||
|
||||
Reference in New Issue
Block a user