Sha256: d348e6be2d0bbf014b157c66aa7efffc251052ca9f840b7b8fe6baf27b6f1ad7
Contents?: true
Size: 832 Bytes
Versions: 5
Compression:
Stored size: 832 Bytes
Contents
require "xml" require 'test/unit' class NodeCommentTest < 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
5 entries across 5 versions & 4 rubygems