aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/routing_tests.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/routing_tests.rb')
-rw-r--r--actionpack/test/controller/routing_tests.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/test/controller/routing_tests.rb b/actionpack/test/controller/routing_tests.rb
index 5a8df3a3f4..821e66af70 100644
--- a/actionpack/test/controller/routing_tests.rb
+++ b/actionpack/test/controller/routing_tests.rb
@@ -403,6 +403,13 @@ class RouteSetTests < Test::Unit::TestCase
@set.connect ':action/:controller'
verify_generate('index/resource', options)
end
+
+ def test_action_dropped_when_controller_given
+ @request.path_parameters = {:controller => 'content', :action => 'list'}
+ options = {:controller => 'content'}
+ @set.connect ':action/:controller'
+ verify_generate('index/content', options)
+ end
end
#require '../assertions/action_pack_assertions.rb'