Sha256: c5adca6ee5f57e4e8cb91bacdd2a4f30ac5d70087f329eb65fe69d9207ca7baf
Contents?: true
Size: 828 Bytes
Versions: 2
Compression:
Stored size: 828 Bytes
Contents
require "libxml" require 'test/unit' class TC_XML_Node9 < Test::Unit::TestCase def setup() xp = XML::Parser.new() str = '<root></root>' assert_equal(str, xp.string = str) @doc = xp.parse assert_instance_of(XML::Document, @doc) @root = @doc.root end def test_libxml_node_add_comment_01 @root << XML::Node.new_comment('mycomment') assert_equal '<root><!--mycomment--></root>', @root.to_s.gsub(/\n\s*/,'') end def test_libxml_node_add_comment_02 @root << XML::Node.new_comment('mycomment') assert_equal 'comment', @root.child.node_type_name end def test_libxml_node_add_comment_03 @root << el = XML::Node.new_comment('mycomment') el << "_this_is_added" assert_equal '<root><!--mycomment_this_is_added--></root>', @root.to_s.gsub(/\n\s*/,'') end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-0.5.3 | test/tc_xml_node9.rb |
libxml-ruby-0.5.4 | test/tc_xml_node9.rb |