From ac56c0c99ccd14c7229145fc22d6e9eb13ee0af0 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 25 Jun 2012 17:49:35 +0000 Subject: Ability to close projects (read-only) (#3640). A new permission (Close/reopen project) is available to give non-admin users the ability to close their projects. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9883 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/integration/routing/projects_test.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/integration/routing') diff --git a/test/integration/routing/projects_test.rb b/test/integration/routing/projects_test.rb index d53c0607c..2d4756f26 100644 --- a/test/integration/routing/projects_test.rb +++ b/test/integration/routing/projects_test.rb @@ -69,6 +69,14 @@ class RoutingProjectsTest < ActionController::IntegrationTest { :method => 'post', :path => "/projects/64/unarchive" }, { :controller => 'projects', :action => 'unarchive', :id => '64' } ) + assert_routing( + { :method => 'post', :path => "/projects/64/close" }, + { :controller => 'projects', :action => 'close', :id => '64' } + ) + assert_routing( + { :method => 'post', :path => "/projects/64/reopen" }, + { :controller => 'projects', :action => 'reopen', :id => '64' } + ) assert_routing( { :method => 'put', :path => "/projects/4223" }, { :controller => 'projects', :action => 'update', :id => '4223' } -- cgit v1.2.3