mirror of
https://github.com/redmine/redmine.git
synced 2025-11-05 04:45:57 +01:00
Adds tests for new routes.
git-svn-id: http://svn.redmine.org/redmine/trunk@13603 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -35,6 +35,10 @@ class RoutingMembersTest < ActionDispatch::IntegrationTest
|
||||
{ :method => 'post', :path => "/projects/5234/memberships.xml" },
|
||||
{ :controller => 'members', :action => 'create', :project_id => '5234', :format => 'xml' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'get', :path => "/projects/5234/memberships/new" },
|
||||
{ :controller => 'members', :action => 'new', :project_id => '5234' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'put', :path => "/memberships/5234" },
|
||||
{ :controller => 'members', :action => 'update', :id => '5234' }
|
||||
|
||||
@@ -19,6 +19,11 @@ require File.expand_path('../../../test_helper', __FILE__)
|
||||
|
||||
class RoutingPrincipalMembershipsTest < ActionDispatch::IntegrationTest
|
||||
def test_user_memberships
|
||||
assert_routing(
|
||||
{ :method => 'get', :path => "/users/123/memberships/new" },
|
||||
{ :controller => 'principal_memberships', :action => 'new',
|
||||
:user_id => '123' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'post', :path => "/users/123/memberships" },
|
||||
{ :controller => 'principal_memberships', :action => 'create',
|
||||
@@ -37,6 +42,11 @@ class RoutingPrincipalMembershipsTest < ActionDispatch::IntegrationTest
|
||||
end
|
||||
|
||||
def test_group_memberships
|
||||
assert_routing(
|
||||
{ :method => 'get', :path => "/groups/123/memberships/new" },
|
||||
{ :controller => 'principal_memberships', :action => 'new',
|
||||
:group_id => '123' }
|
||||
)
|
||||
assert_routing(
|
||||
{ :method => 'post', :path => "/groups/123/memberships" },
|
||||
{ :controller => 'principal_memberships', :action => 'create',
|
||||
|
||||
Reference in New Issue
Block a user