diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-13 05:35:51 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-04-13 05:35:51 +0000 |
commit | 7f558cbd05535f80dfb56198c803df09896c202b (patch) | |
tree | e836c857cf6d699526253e256dbaf80659f42ea4 /actionpack/test/controller | |
parent | ecf82d127bb814ff4b9b35fbf177839932d7df65 (diff) | |
download | rails-7f558cbd05535f80dfb56198c803df09896c202b.tar.gz rails-7f558cbd05535f80dfb56198c803df09896c202b.tar.bz2 rails-7f558cbd05535f80dfb56198c803df09896c202b.zip |
Fixed that *rest parameter in map.connect couldn't accept an empty list #1037 [Dee.Zsombor@gmail.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1158 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/routing_tests.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/actionpack/test/controller/routing_tests.rb b/actionpack/test/controller/routing_tests.rb index a5b6066d66..0f5987e69e 100644 --- a/actionpack/test/controller/routing_tests.rb +++ b/actionpack/test/controller/routing_tests.rb @@ -343,7 +343,10 @@ class RouteTests < Test::Unit::TestCase {}) end - + def test_path_empty_list + route '*a', :controller => 'content' + verify_recognize '', :controller => 'content', :a => [] + end def test_special_characters route ':id', :controller => 'content', :action => 'fish' |