mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
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
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Fixed Array#to_xml when it contains a series of hashes (each piece would get its own XML declaration) #6610 [thkarcher/cyu]
|
||||
|
||||
* Added Time#to_s(:time) which will just return H:M, like 17:44 [DHH]
|
||||
|
||||
* Add Module#attr_accessor_with_default to initialize value of attribute before setting it. Closes #6538. [Stuart Halloway, Marcel Molina Jr.]
|
||||
|
||||
@@ -61,9 +61,9 @@ module ActiveSupport #:nodoc:
|
||||
|
||||
options[:builder].instruct! unless options.delete(:skip_instruct)
|
||||
|
||||
opts = options.merge({ :skip_instruct => true, :root => children })
|
||||
opts = options.merge({ :root => children })
|
||||
|
||||
options[:builder].tag!(root) { each { |e| e.to_xml(opts) } }
|
||||
options[:builder].tag!(root) { each { |e| e.to_xml(opts.merge!({ :skip_instruct => true })) } }
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user