From 71ff705449aa0cc38baa746c07d2520fdb64096a Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Wed, 26 Apr 2006 21:49:41 +0000 Subject: Allow default options in with_options to be overridden. Closes #4480. [murphy@cYcnus.de] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4282 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/test/option_merger_test.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'activesupport/test/option_merger_test.rb') diff --git a/activesupport/test/option_merger_test.rb b/activesupport/test/option_merger_test.rb index f5287d5725..e97a4f918b 100644 --- a/activesupport/test/option_merger_test.rb +++ b/activesupport/test/option_merger_test.rb @@ -27,6 +27,22 @@ class OptionMergerTest < Test::Unit::TestCase end end + def test_method_with_options_allows_to_overwrite_options + local_options = {:hello => 'moon'} + assert_equal @options.keys, local_options.keys + + with_options(@options) do |o| + assert_equal local_options, method_with_options(local_options) + assert_equal @options.merge(local_options), + o.method_with_options(local_options) + assert_equal local_options, o.method_with_options(local_options) + end + with_options(local_options) do |o| + assert_equal local_options.merge(@options), + o.method_with_options(@options) + end + end + private def method_with_options(options = {}) options -- cgit v1.2.3