aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/hash_ext_test.rb
diff options
context:
space:
mode:
authorDavid Burger <davidjburger@yahoo.com>2009-05-17 21:36:44 -0700
committerPratik Naik <pratiknaik@gmail.com>2009-08-09 21:46:52 +0100
commit1382f4de1f9b0e443e7884bd4da53c20f0754568 (patch)
tree0901f754519da277ae98f4bd3ec606d49e02ce35 /activesupport/test/core_ext/hash_ext_test.rb
parent870750ed4b1e0b0e574aaec86db3e2cdf94b1190 (diff)
downloadrails-1382f4de1f9b0e443e7884bd4da53c20f0754568.tar.gz
rails-1382f4de1f9b0e443e7884bd4da53c20f0754568.tar.bz2
rails-1382f4de1f9b0e443e7884bd4da53c20f0754568.zip
Fix that Hash#to_xml and Array#to_xml shouldn't modify their options hashes [#672 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'activesupport/test/core_ext/hash_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/hash_ext_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb
index ece5466abb..8b0f3fc33c 100644
--- a/activesupport/test/core_ext/hash_ext_test.rb
+++ b/activesupport/test/core_ext/hash_ext_test.rb
@@ -880,6 +880,13 @@ class HashToXmlTest < Test::Unit::TestCase
assert_equal 30, alert_at.min
assert_equal 45, alert_at.sec
end
+
+ def test_to_xml_dups_options
+ options = {:skip_instruct => true}
+ {}.to_xml(options)
+ # :builder, etc, shouldn't be added to options
+ assert_equal({:skip_instruct => true}, options)
+ end
end
class QueryTest < Test::Unit::TestCase