# File ext/libxml/tests/tc_xml_document_write3.rb, line 51 def test_ruby_xml_document_write_sibling() xml = "<?xml version=\"1.0\"?>\n<rubynet>\n <pkg/>\n <pkg2/>\n</rubynet>\n" child = @doc.root.child = XML::Node.new('pkg') assert_instance_of(XML::Node, child) child.sibling = XML::Node.new('pkg2') assert_equal(xml, @doc.to_s) end