From af33a6a6b193f4470d2c072d6fa197b72c74001b Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Fri, 24 Jun 2005 22:15:45 +0000 Subject: Fix problem with symbol/string mismatch on some routes git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1500 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/routing_test.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'actionpack/test/controller/routing_test.rb') diff --git a/actionpack/test/controller/routing_test.rb b/actionpack/test/controller/routing_test.rb index 2e35320322..0a9453e86a 100644 --- a/actionpack/test/controller/routing_test.rb +++ b/actionpack/test/controller/routing_test.rb @@ -622,6 +622,13 @@ class RouteSetTests < Test::Unit::TestCase end end + def test_route_with_colon_first + rs.draw do |map| + map.connect '/:controller/:action/:id', :action => 'index', :id => nil + map.connect ':url', :controller => 'tiny_url', :action => 'translate' + end + end + def test_basic_named_route rs.home '', :controller => 'content', :action => 'list' x = setup_for_named_route -- cgit v1.2.3