aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/routing_test.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb
index 136a3dc8e6..4f094a36ff 100644
--- a/actionpack/test/controller/routing_test.rb
+++ b/actionpack/test/controller/routing_test.rb
@@ -823,7 +823,15 @@ class RouteSetTests < Test::Unit::TestCase
rs.connect ':controller/:action/:id'
end
end
-
+
+ def test_dynamic_path_allowed
+ rs.draw do |map|
+ rs.connect '*path', :controller => 'content', :action => 'show_file'
+ end
+
+ assert_equal ['/pages/boo', []], rs.generate(:controller => 'content', :action => 'show_file', :path => %w(pages boo))
+ end
+
def test_backwards
rs.draw do |map|
rs.connect 'page/:id/:action', :controller => 'pages', :action => 'show'