From: Jean-Philippe Lang Date: Sun, 16 Nov 2014 11:02:04 +0000 (+0000) Subject: Renamed #test_watchers to #test_issue_watchers. X-Git-Tag: 3.0.0~366 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d72e1f95ba4f5c354fbb701808c20c99266077fd;p=redmine.git Renamed #test_watchers to #test_issue_watchers. git-svn-id: http://svn.redmine.org/redmine/trunk@13607 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/integration/api_test/api_routing_test.rb b/test/integration/api_test/api_routing_test.rb index 40cfe7a71..01782f58c 100644 --- a/test/integration/api_test/api_routing_test.rb +++ b/test/integration/api_test/api_routing_test.rb @@ -76,6 +76,11 @@ class Redmine::ApiTest::ApiRoutingTest < Redmine::ApiTest::Routing should_route 'DELETE /issues/64' => 'issues#destroy', :id => '64' end + def test_issue_watchers + should_route 'POST /issues/12/watchers' => 'watchers#create', :object_type => 'issue', :object_id => '12' + should_route 'DELETE /issues/12/watchers/3' => 'watchers#destroy', :object_type => 'issue', :object_id => '12', :user_id => '3' + end + def test_memberships should_route 'GET /projects/5234/memberships' => 'members#index', :project_id => '5234' should_route 'POST /projects/5234/memberships' => 'members#create', :project_id => '5234' @@ -140,11 +145,6 @@ class Redmine::ApiTest::ApiRoutingTest < Redmine::ApiTest::Routing should_route 'DELETE /versions/1' => 'versions#destroy', :id => '1' end - def test_watchers - should_route 'POST /issues/12/watchers' => 'watchers#create', :object_type => 'issue', :object_id => '12' - should_route 'DELETE /issues/12/watchers/3' => 'watchers#destroy', :object_type => 'issue', :object_id => '12', :user_id => '3' - end - def test_wiki should_route 'GET /projects/567/wiki/index' => 'wiki#index', :project_id => '567'