aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/routing_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/controller/routing_test.rb')
-rw-r--r--actionpack/test/controller/routing_test.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb
index 3b3cee6ae6..48151ba198 100644
--- a/actionpack/test/controller/routing_test.rb
+++ b/actionpack/test/controller/routing_test.rb
@@ -661,7 +661,17 @@ class RouteSetTests < Test::Unit::TestCase
x = setup_for_named_route
assert_equal({:controller => '/content', :action => 'show_page', :title => 'new stuff'},
x.new.send(:page_url, :title => 'new stuff'))
- end
+ end
+
+ def test_named_route_with_default
+ rs.page 'page/:title', :controller => 'content', :action => 'show_page', :title => 'AboutPage'
+ x = setup_for_named_route
+ assert_equal({:controller => '/content', :action => 'show_page', :title => 'AboutPage'},
+ x.new.send(:page_url))
+ assert_equal({:controller => '/content', :action => 'show_page', :title => 'AboutRails'},
+ x.new.send(:page_url, :title => "AboutRails"))
+
+ end
def setup_for_named_route
x = Class.new