Sha256: 44979f6fe716db132863888cf905999792bb5442e17955724f8db19aa34f8361
Contents?: true
Size: 740 Bytes
Versions: 1
Compression:
Stored size: 740 Bytes
Contents
# $Id: tc_xml_node3.rb,v 1.2 2006/04/17 13:30:22 roscopeco Exp $ require "libxml_test" require 'test/unit' class TC_XML_Node2 < 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) assert_instance_of(XML::Node, doc.root) @root = doc.root assert_instance_of(XML::Node, @root) end def teardown() @root = nil end def test_xml_node_doc_content() assert_equal 'onetwo', @root.content first = @root.child assert_equal 'one', first.content assert_equal 'two', first.next.content end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-0.3.8 | tests/tc_xml_node3.rb |