From 0919dbf6b63a4aaa49a2855c37e79a90937290e1 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 20 Mar 2005 22:44:12 +0000 Subject: Routes: Convert results of #to_param to strings #879 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@947 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/routing_tests.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'actionpack/test/controller/routing_tests.rb') diff --git a/actionpack/test/controller/routing_tests.rb b/actionpack/test/controller/routing_tests.rb index 744ccb1093..f36e395107 100644 --- a/actionpack/test/controller/routing_tests.rb +++ b/actionpack/test/controller/routing_tests.rb @@ -346,6 +346,13 @@ class RouteTests < Test::Unit::TestCase verify_generate('id%2Fwith%2Fslashes', {}, {:controller => 'content', :action => 'fish', :id => 'id/with/slashes'}, {}) end + + def test_generate_with_numeric_param + o = Object.new + def o.to_param() 10 end + verify_generate('content/action/10', {}, {:controller => 'content', :action => 'action', :id => o}, @defaults) + verify_generate('content/show/10', {}, {:controller => 'content', :action => 'show', :id => o}, @defaults) + end end class RouteSetTests < Test::Unit::TestCase -- cgit v1.2.3