1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
# $Id: tc_xml_node_set.rb 183 2007-09-21 14:09:52Z danj $
require "libxml_test"
require 'test/unit'
class TC_XML_Node_Set < Test::Unit::TestCase
def setup()
xp = XML::Parser.new()
str = '<ruby_array uga="booga" foo="bar"><fixnum>one</fixnum><fixnum>two</fixnum></ruby_array>'
assert_equal(str, xp.string = str)
doc = xp.parse
assert_instance_of(XML::Document, doc)
@set = doc.find('/ruby_array/fixnum').set
assert_instance_of(XML::Node::Set, @set)
end
def teardown()
@set = nil
end
def test_libxml_nodeset_each()
@set.each do |n|
assert_instance_of(XML::Node, n)
end
end
end # TC_XML_Document
|