aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorRuy Asan <ruyasan@gmail.com>2009-05-01 13:49:18 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-05-01 15:02:32 -0700
commit3be3470fab788856b4559742434f195cc6b1009a (patch)
treee18c87ced72064ddb4c49030a0dc30784d78bb00 /actionpack/test
parent99c103be1165da9c8299bc0977188ecf167e06a5 (diff)
downloadrails-3be3470fab788856b4559742434f195cc6b1009a.tar.gz
rails-3be3470fab788856b4559742434f195cc6b1009a.tar.bz2
rails-3be3470fab788856b4559742434f195cc6b1009a.zip
Added routing test for irregular ID requirements and custom member action.
[#2595 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/resources_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/actionpack/test/controller/resources_test.rb b/actionpack/test/controller/resources_test.rb
index c807e71cd7..30ab110ef7 100644
--- a/actionpack/test/controller/resources_test.rb
+++ b/actionpack/test/controller/resources_test.rb
@@ -120,6 +120,14 @@ class ResourcesTest < ActionController::TestCase
end
end
+ def test_irregular_id_requirements_should_get_passed_to_member_actions
+ expected_options = {:controller => 'messages', :action => 'custom', :id => '1.1.1'}
+
+ with_restful_routing(:messages, :member => {:custom => :get}, :requirements => {:id => /[0-9]\.[0-9]\.[0-9]/}) do
+ assert_recognizes(expected_options, :path => 'messages/1.1.1/custom', :method => :get)
+ end
+ end
+
def test_with_path_prefix
with_restful_routing :messages, :path_prefix => '/thread/:thread_id' do
assert_simply_restful_for :messages, :path_prefix => 'thread/5/', :options => { :thread_id => '5' }