Sha256: 95fe4aa81ddb757d336bc9766f0fe0b845a16686901b409c29ac61abefa07190

Contents?: true

Size: 666 Bytes

Versions: 2

Compression:

Stored size: 666 Bytes

Contents

require "libxml"
require 'test/unit'

class TC_XML_Node3 < 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

2 entries across 2 versions & 1 rubygems

Version Path
libxml-ruby-0.5.3 test/tc_xml_node3.rb
libxml-ruby-0.5.4 test/tc_xml_node3.rb