Sha256: d181f96fda700d6418940355633c0c79843c5ab2eeafbc3b3928769c9a4fa719

Contents?: true

Size: 846 Bytes

Versions: 45

Compression:

Stored size: 846 Bytes

Contents

# encoding: UTF-8

require './test_helper'

require 'test/unit'

class NodeCommentTest < Test::Unit::TestCase
  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

45 entries across 45 versions & 2 rubygems

Version Path
smile-xml-1.0.5-java src/test/ruby/tc_node_comment.rb
smile-xml-1.0.4-java src/test/ruby/tc_node_comment.rb
libxml-ruby-2.8.0 test/tc_node_comment.rb
smile-xml-1.0.3-java src/test/ruby/tc_node_comment.rb
libxml-ruby-2.7.0-x86-mingw32 test/tc_node_comment.rb
libxml-ruby-2.7.0 test/tc_node_comment.rb
smile-xml-1.0.3-jruby src/test/ruby/tc_node_comment.rb
libxml-ruby-2.6.0-x86-mingw32 test/tc_node_comment.rb
libxml-ruby-2.6.0 test/tc_node_comment.rb
libxml-ruby-2.5.0-x86-mingw32 test/tc_node_comment.rb
libxml-ruby-2.5.0 test/tc_node_comment.rb
libxml-ruby-2.4.0-x86-mingw32 test/tc_node_comment.rb
libxml-ruby-2.4.0 test/tc_node_comment.rb
smile-xml-1.0.2-jruby src/test/ruby/tc_node_comment.rb
libxml-ruby-2.3.3-x86-mingw32 test/tc_node_comment.rb
libxml-ruby-2.3.3 test/tc_node_comment.rb
libxml-ruby-2.3.2 test/tc_node_comment.rb
libxml-ruby-2.3.0-x86-mingw32 test/tc_node_comment.rb
libxml-ruby-2.3.0 test/tc_node_comment.rb
libxml-ruby-2.2.2-x86-mingw32 test/tc_node_comment.rb