Sha256: 5a04a870bd302af58d493ae993b640ccc980873f1fe0caeb3b89ae826b748dfa

Contents?: true

Size: 864 Bytes

Versions: 20

Compression:

Stored size: 864 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

20 entries across 20 versions & 1 rubygems

Version Path
libxml-ruby-0.8.2 test/tc_node_comment.rb
libxml-ruby-0.8.2-x86-mswin32-60 test/tc_node_comment.rb
libxml-ruby-0.9.3-x86-mswin32-60 test/tc_node_comment.rb
libxml-ruby-0.8.3 test/tc_node_comment.rb
libxml-ruby-0.8.3-x86-mswin32-60 test/tc_node_comment.rb
libxml-ruby-0.9.0 test/tc_node_comment.rb
libxml-ruby-0.9.0-x86-mswin32-60 test/tc_node_comment.rb
libxml-ruby-0.9.1 test/tc_node_comment.rb
libxml-ruby-0.9.2-x86-mswin32-60 test/tc_node_comment.rb
libxml-ruby-0.9.2 test/tc_node_comment.rb
libxml-ruby-0.9.1-x86-mswin32-60 test/tc_node_comment.rb
libxml-ruby-0.9.6-x86-mswin32-60 test/tc_node_comment.rb
libxml-ruby-0.9.3 test/tc_node_comment.rb
libxml-ruby-0.9.5-x86-mswin32-60 test/tc_node_comment.rb
libxml-ruby-0.9.6 test/tc_node_comment.rb
libxml-ruby-0.9.4 test/tc_node_comment.rb
libxml-ruby-0.9.4-x86-mswin32-60 test/tc_node_comment.rb
libxml-ruby-0.9.5 test/tc_node_comment.rb
libxml-ruby-0.9.7-x86-mswin32-60 test/tc_node_comment.rb
libxml-ruby-0.9.7 test/tc_node_comment.rb