Sha256: fc1d854b39bcac17e20b61a35f85b21aabd4378619f6fc4b7ad69fbe74b11ae2

Contents?: true

Size: 925 Bytes

Versions: 14

Compression:

Stored size: 925 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_pi_01
    @root << XML::Node.new_pi('mypi')
    assert_equal '<root><?mypi?></root>',
      @root.to_s.gsub(/\n\s*/,'')
  end

  def test_libxml_node_add_pi_02
    @root << XML::Node.new_pi('mypi')
    assert_equal 'pi',
    @root.child.node_type_name
  end

  def test_libxml_node_add_pi_03
    @root << el = XML::Node.new_pi('mypi')
    el << "_this_is_added"
    assert_equal '<root><?mypi _this_is_added?></root>',
    @root.to_s.gsub(/\n\s*/,'')
  end

  def test_libxml_node_add_pi_04
    @root << XML::Node.new_pi('mypi','mycontent')
    assert_equal '<root><?mypi mycontent?></root>',
      @root.to_s.gsub(/\n\s*/,'')
  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
libxml-ruby-2.8.0 test/tc_node_pi.rb
libxml-ruby-2.7.0-x86-mingw32 test/tc_node_pi.rb
libxml-ruby-2.7.0 test/tc_node_pi.rb
libxml-ruby-2.6.0-x86-mingw32 test/tc_node_pi.rb
libxml-ruby-2.6.0 test/tc_node_pi.rb
libxml-ruby-2.5.0-x86-mingw32 test/tc_node_pi.rb
libxml-ruby-2.5.0 test/tc_node_pi.rb
libxml-ruby-2.4.0-x86-mingw32 test/tc_node_pi.rb
libxml-ruby-2.4.0 test/tc_node_pi.rb
libxml-ruby-2.3.3-x86-mingw32 test/tc_node_pi.rb
libxml-ruby-2.3.3 test/tc_node_pi.rb
libxml-ruby-2.3.2 test/tc_node_pi.rb
libxml-ruby-2.3.0-x86-mingw32 test/tc_node_pi.rb
libxml-ruby-2.3.0 test/tc_node_pi.rb