require "libxml_test" require 'test/unit' class TC_XML_Node8 < Test::Unit::TestCase def setup() xp = XML::Parser.new() str = '' assert_equal(str, xp.string = str) @doc = xp.parse assert_instance_of(XML::Document, @doc) @root = @doc.root end def test_libxml_node_add_cdata_01 @root << XML::Node.new_cdata('mycdata') assert_equal '', @root.to_s.gsub(/\n\s*/,'') end def test_libxml_node_add_cdata_02 @root << XML::Node.new_cdata('mycdata') assert_equal 'cdata', @root.child.node_type_name end def test_libxml_node_add_cdata_03 @root << el = XML::Node.new_cdata('mycdata') el << "_this_is_added" assert_equal '', @root.to_s.gsub(/\n\s*/,'') end end