summaryrefslogtreecommitdiffstats
path: root/test/functional/projects_controller_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-03-06 18:43:00 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-03-06 18:43:00 +0000
commit6511e9423340c297c49cb54521a2fc763d625727 (patch)
treed2416d6effb08bf09927d73d6f2b38b70068cdb7 /test/functional/projects_controller_test.rb
parent729bea1cf38ed80bc34c47a8ef3783d9e06ce5c5 (diff)
downloadredmine-6511e9423340c297c49cb54521a2fc763d625727.tar.gz
redmine-6511e9423340c297c49cb54521a2fc763d625727.zip
Moves ProjectsController#add_issue_category to IssueCategoriesController#new.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3549 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/projects_controller_test.rb')
-rw-r--r--test/functional/projects_controller_test.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/functional/projects_controller_test.rb b/test/functional/projects_controller_test.rb
index f4fe8dae5..e64602aee 100644
--- a/test/functional/projects_controller_test.rb
+++ b/test/functional/projects_controller_test.rb
@@ -329,18 +329,6 @@ class ProjectsControllerTest < ActionController::TestCase
assert_equal 'Test changed name', project.name
end
- def test_add_issue_category_routing
- assert_routing(
- {:method => :get, :path => 'projects/test/categories/new'},
- :controller => 'projects', :action => 'add_issue_category', :id => 'test'
- )
- assert_routing(
- #TODO: use PUT and update form
- {:method => :post, :path => 'projects/64/categories/new'},
- :controller => 'projects', :action => 'add_issue_category', :id => '64'
- )
- end
-
def test_destroy_routing
assert_routing(
{:method => :get, :path => '/projects/567/destroy'},