From cd6b2f2268d3e02ae652d3ad37f02170e3647a72 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 16 Nov 2014 09:01:44 +0000 Subject: [PATCH] Adds tests for new routes. git-svn-id: http://svn.redmine.org/redmine/trunk@13603 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/integration/routing/members_test.rb | 4 ++++ test/integration/routing/principal_memberships_test.rb | 10 ++++++++++ 2 files changed, 14 insertions(+) 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', -- 2.39.5