File: test_node_pi.rb

package info (click to toggle)
ruby-libxml 5.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,800 kB
  • sloc: xml: 18,263; ansic: 7,669; ruby: 5,809; makefile: 6
file content (37 lines) | stat: -rw-r--r-- 986 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# encoding: UTF-8

require_relative './test_helper'

class NodePiTest < Minitest::Test
  def setup
    xp = LibXML::XML::Parser.string('<root></root>')
    @doc = xp.parse
    assert_instance_of(LibXML::XML::Document, @doc)
    @root = @doc.root
  end

  def test_libxml_node_add_pi_01
    @root << LibXML::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 << LibXML::XML::Node.new_pi('mypi')
    assert_equal 'pi',
    @root.child.node_type_name
  end

  def test_libxml_node_add_pi_03
    @root << el = LibXML::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 << LibXML::XML::Node.new_pi('mypi','mycontent')
    assert_equal '<root><?mypi mycontent?></root>',
      @root.to_s.gsub(/\n\s*/,'')
  end
end