aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-12-03 16:47:53 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-12-03 16:47:53 +0000
commit0297b31b8235ee5c64743fdd4f922b008dd83af0 (patch)
tree224bfd38a876a7b3aa7ce47a4efc6c83e7ae5e9d /activesupport/test/core_ext
parent7611fa6d469cef9accabe6bb5e7e95914756322a (diff)
downloadrails-0297b31b8235ee5c64743fdd4f922b008dd83af0.tar.gz
rails-0297b31b8235ee5c64743fdd4f922b008dd83af0.tar.bz2
rails-0297b31b8235ee5c64743fdd4f922b008dd83af0.zip
Fixed Array#to_xml when it contains a series of hashes (each piece would get its own XML declaration) (closes #6610) [thkarcher/cyu]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5668 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r--activesupport/test/core_ext/array_ext_test.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/array_ext_test.rb b/activesupport/test/core_ext/array_ext_test.rb
index 957c56c92d..709df84f06 100644
--- a/activesupport/test/core_ext/array_ext_test.rb
+++ b/activesupport/test/core_ext/array_ext_test.rb
@@ -169,4 +169,14 @@ class ArrayToXmlTests < Test::Unit::TestCase
assert xml.include?(%(<street-address>Paulina</street-address>))
assert xml.include?(%(<street-address>Evergreen</street-address>))
end
+
+ def test_to_with_instruct
+ xml = [
+ { :name => "David", :age => 26, :age_in_millis => 820497600000 },
+ { :name => "Jason", :age => 31, :age_in_millis => BigDecimal.new('1.0') }
+ ].to_xml(:skip_instruct => false, :indent => 0)
+
+ assert /^<\?xml [^>]*/.match(xml)
+ assert xml.rindex(/<\?xml /) == 0
+ end
end