diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-04-19 22:32:39 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-04-19 22:32:39 +0000 |
commit | c87d242bf7b0f75800926c3a8cf23bb43667c9dd (patch) | |
tree | f80d29463400c06fe1410d9bfcae47b76ffee9ea /activesupport/test/core_ext | |
parent | c97f329b2a76439cd4fe71debdd64c71e9890b48 (diff) | |
download | rails-c87d242bf7b0f75800926c3a8cf23bb43667c9dd.tar.gz rails-c87d242bf7b0f75800926c3a8cf23bb43667c9dd.tar.bz2 rails-c87d242bf7b0f75800926c3a8cf23bb43667c9dd.zip |
Added yielding of builder in Hash#to_xml [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6540 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r-- | activesupport/test/core_ext/hash_ext_test.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb index 63caed7d99..813e23af5f 100644 --- a/activesupport/test/core_ext/hash_ext_test.rb +++ b/activesupport/test/core_ext/hash_ext_test.rb @@ -342,6 +342,17 @@ class HashToXmlTest < Test::Unit::TestCase assert xml.include?(%(<age nil="true"></age>)) end + def test_one_level_with_yielding + xml = { :name => "David", :street => "Paulina" }.to_xml(@xml_options) do |xml| + xml.creator("Rails") + end + + assert_equal "<person>", xml.first(8) + assert xml.include?(%(<street>Paulina</street>)) + assert xml.include?(%(<name>David</name>)) + assert xml.include?(%(<creator>Rails</creator>)) + end + def test_two_levels xml = { :name => "David", :address => { :street => "Paulina" } }.to_xml(@xml_options) assert_equal "<person>", xml.first(8) |