diff --git a/test/integration/routing/workflows_test.rb b/test/integration/routing/workflows_test.rb index a6adcc8..29c94d8 100644 --- a/test/integration/routing/workflows_test.rb +++ b/test/integration/routing/workflows_test.rb @@ -31,6 +31,12 @@ class RoutingWorkflowsTest < ActionController::IntegrationTest end ["get", "post"].each do |method| assert_routing( + { :method => method, :path => "/workflows/permissions" }, + { :controller => 'workflows', :action => 'permissions' } + ) + end + ["get", "post"].each do |method| + assert_routing( { :method => method, :path => "/workflows/copy" }, { :controller => 'workflows', :action => 'copy' } )