Use namespace_name in Attribute#to_xml

Instead of using `namespace.name` lets just use `namespace_name`. This fixes the
problem of serializing attributes where the namespace prefix is "xmlns" as the
namespace for this isn't registered by default.

This fixes #47.
This commit is contained in:
Yorick Peterse 2014-09-24 00:19:58 +02:00
parent 00579eaa8a
commit 75f4e81533
2 changed files with 11 additions and 1 deletions

View File

@ -82,7 +82,7 @@ module Oga
#
def to_xml
if namespace_name
full_name = "#{namespace.name}:#{name}"
full_name = "#{namespace_name}:#{name}"
else
full_name = name
end

View File

@ -68,6 +68,16 @@ describe Oga::XML::Attribute do
attr.to_xml.should == 'foo:class="10"'
end
example 'include the "xmlns" namespace when present but not registered' do
attr = described_class.new(
:name => 'class',
:namespace_name => 'xmlns',
:element => Oga::XML::Element.new
)
attr.to_xml.should == 'xmlns:class=""'
end
end
context '#inspect' do