Sha256: aaae73bb130134a2e22aa74703dd11ff2069b66e4a697567c4f141c945e91a73
Contents?: true
Size: 819 Bytes
Versions: 4
Compression:
Stored size: 819 Bytes
Contents
# encoding: UTF-8 require './test_helper' class NodeCommentTest < Minitest::Test def setup xp = XML::Parser.string('<root></root>') @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
4 entries across 4 versions & 1 rubygems