Dup the options passed to map.resources so that multiple resources get the same options. [Rick Olson]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4639 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Rick Olson
2006-07-31 20:32:48 +00:00
parent ed4c295c47
commit d2eafa8b73
3 changed files with 20 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Dup the options passed to map.resources so that multiple resources get the same options. [Rick Olson]
* Fixed the new_#{resource}_url route and added named route tests for Simply Restful. [Rick Olson]
* Added map.resources from the Simply Restful plugin [DHH]. Examples (the API has changed to use plurals!):

View File

@@ -84,7 +84,7 @@ module ActionController
def resources(*entities)
options = entities.last.is_a?(Hash) ? entities.pop : { }
entities.each { |entity| map_resource(entity, options) { yield if block_given? } }
entities.each { |entity| map_resource(entity, options.dup) { yield if block_given? } }
end
private

View File

@@ -6,6 +6,7 @@ class MessagesController < ActionController::Base
end
class CommentsController < ActionController::Base
def index() render :nothing => true end
def rescue_action(e) raise e end
end
@@ -16,12 +17,26 @@ class ResourcesTest < Test::Unit::TestCase
end
end
def test_multiple_default_restful_routes
with_restful_routing :messages, :comments do
assert_simply_restful_for :messages
assert_simply_restful_for :comments
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' }
end
end
def test_multile_with_path_prefix
with_restful_routing :messages, :comments, :path_prefix => '/thread/:thread_id' do
assert_simply_restful_for :messages, :path_prefix => 'thread/5/', :options => { :thread_id => '5' }
assert_simply_restful_for :comments, :path_prefix => 'thread/5/', :options => { :thread_id => '5' }
end
end
def test_with_collection_action
with_restful_routing :messages, :collection => { :rss => :get } do
rss_options = {:action => 'rss'}
@@ -86,9 +101,9 @@ class ResourcesTest < Test::Unit::TestCase
end
protected
def with_restful_routing(resource, *args)
def with_restful_routing(*args)
with_routing do |set|
set.draw { |map| map.resources(resource, *args) }
set.draw { |map| map.resources(*args) }
yield
end
end