diff --git a/test/integration/routing/members_test.rb b/test/integration/routing/members_test.rb index 20de5662b..91a98d401 100644 --- a/test/integration/routing/members_test.rb +++ b/test/integration/routing/members_test.rb @@ -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' } diff --git a/test/integration/routing/principal_memberships_test.rb b/test/integration/routing/principal_memberships_test.rb index 017ee1de6..4aeed1331 100644 --- a/test/integration/routing/principal_memberships_test.rb +++ b/test/integration/routing/principal_memberships_test.rb @@ -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',