diff options
author | Brennan Dunn <me@brennandunn.com> | 2008-08-28 07:35:00 -0400 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2008-08-28 12:23:39 -0700 |
commit | 7bdd5b768e51f74fa437d1cc8f3c36643364c4fe (patch) | |
tree | 302fa46da10fdd0331ec751aa02134d192653c2c /actionpack/test | |
parent | db22c89543f45d7f27847003af949afa21cb6fa1 (diff) | |
download | rails-7bdd5b768e51f74fa437d1cc8f3c36643364c4fe.tar.gz rails-7bdd5b768e51f74fa437d1cc8f3c36643364c4fe.tar.bz2 rails-7bdd5b768e51f74fa437d1cc8f3c36643364c4fe.zip |
Accept an array of method symbols for collection/member actions of resources
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/resources_test.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/actionpack/test/controller/resources_test.rb b/actionpack/test/controller/resources_test.rb index e153b0cc98..7830767723 100644 --- a/actionpack/test/controller/resources_test.rb +++ b/actionpack/test/controller/resources_test.rb @@ -264,6 +264,19 @@ class ResourcesTest < Test::Unit::TestCase end end + def test_array_as_collection_or_member_method_value + with_restful_routing :messages, :collection => { :search => [:get, :post] }, :member => { :toggle => [:get, :post] } do + assert_restful_routes_for :messages do |options| + [:get, :post].each do |method| + assert_recognizes(options.merge(:action => 'search'), :path => "/messages/search", :method => method) + end + [:get, :post].each do |method| + assert_recognizes(options.merge(:action => 'toggle', :id => '1'), :path => '/messages/1/toggle', :method => method) + end + end + end + end + def test_with_new_action with_restful_routing :messages, :new => { :preview => :post } do preview_options = {:action => 'preview'} |