mirror of
https://github.com/redmine/redmine.git
synced 2025-11-01 02:46:13 +01:00
Renamed #test_watchers to #test_issue_watchers.
git-svn-id: http://svn.redmine.org/redmine/trunk@13607 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -76,6 +76,11 @@ class Redmine::ApiTest::ApiRoutingTest < Redmine::ApiTest::Routing
|
|||||||
should_route 'DELETE /issues/64' => 'issues#destroy', :id => '64'
|
should_route 'DELETE /issues/64' => 'issues#destroy', :id => '64'
|
||||||
end
|
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
|
def test_memberships
|
||||||
should_route 'GET /projects/5234/memberships' => 'members#index', :project_id => '5234'
|
should_route 'GET /projects/5234/memberships' => 'members#index', :project_id => '5234'
|
||||||
should_route 'POST /projects/5234/memberships' => 'members#create', :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'
|
should_route 'DELETE /versions/1' => 'versions#destroy', :id => '1'
|
||||||
end
|
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
|
def test_wiki
|
||||||
should_route 'GET /projects/567/wiki/index' => 'wiki#index', :project_id => '567'
|
should_route 'GET /projects/567/wiki/index' => 'wiki#index', :project_id => '567'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user