diff --git a/test/integration/routing/members_test.rb b/test/integration/routing/members_test.rb index 20de566..91a98d4 100644 --- a/test/integration/routing/members_test.rb +++ b/test/integration/routing/members_test.rb @@ -36,6 +36,10 @@ class RoutingMembersTest < ActionDispatch::IntegrationTest { :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' } ) diff --git a/test/integration/routing/principal_memberships_test.rb b/test/integration/routing/principal_memberships_test.rb index 017ee1d..4aeed13 100644 --- a/test/integration/routing/principal_memberships_test.rb +++ b/test/integration/routing/principal_memberships_test.rb @@ -20,6 +20,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', :user_id => '123' } @@ -38,6 +43,11 @@ class RoutingPrincipalMembershipsTest < ActionDispatch::IntegrationTest 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', :group_id => '123' }