Sha256: de7efd111f8f3ca5722adca2435f6486e6ed8d9e8b3e8fb86f329514d3dbb9c9
Contents?: true
Size: 958 Bytes
Versions: 2
Compression:
Stored size: 958 Bytes
Contents
# encoding: UTF-8 require File.expand_path('../test_helper', __FILE__) class NodePiTest < Minitest::Test 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-3.1.0-x64-mingw32 | test/test_node_pi.rb |
libxml-ruby-3.1.0 | test/test_node_pi.rb |