Unique spec node names for Document#each_node.
This makes it a little bit easier to see if the order is actually correct.
This commit is contained in:
parent
8899542971
commit
7fab231992
|
@ -34,12 +34,12 @@ describe Oga::XML::Document do
|
|||
before do
|
||||
@document = parse(<<-EOF.strip.gsub(/\s+/m, ''))
|
||||
<books>
|
||||
<book>
|
||||
<title>Foo</title>
|
||||
</book>
|
||||
<book>
|
||||
<title>Bar</title>
|
||||
</book>
|
||||
<book1>
|
||||
<title1>Foo</title1>
|
||||
</book1>
|
||||
<book2>
|
||||
<title2>Bar</title2>
|
||||
</book2>
|
||||
</books>
|
||||
EOF
|
||||
end
|
||||
|
@ -51,7 +51,7 @@ describe Oga::XML::Document do
|
|||
names << (node.is_a?(Oga::XML::Element) ? node.name : node.text)
|
||||
end
|
||||
|
||||
names.should == %w{books book title Foo book title Bar}
|
||||
names.should == %w{books book1 title1 Foo book2 title2 Bar}
|
||||
end
|
||||
|
||||
example 'yield the document indexes' do
|
||||
|
|
Loading…
Reference in New Issue