Sha256: 760cb0b2f2028a9ebc2b265d6b1489d461cecf9a9384245248a069e7bc60cb95

Contents?: true

Size: 856 Bytes

Versions: 6

Compression:

Stored size: 856 Bytes

Contents

require "libxml"
require 'test/unit'

class CDataCommentTest < 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_cdata_01
    @root << XML::Node.new_cdata('mycdata')
    assert_equal '<root><![CDATA[mycdata]]></root>',
      @root.to_s.gsub(/\n\s*/,'')
  end

  def test_libxml_node_add_cdata_02
    @root << XML::Node.new_cdata('mycdata')
    assert_equal 'cdata',
    @root.child.node_type_name
  end

  def test_libxml_node_add_cdata_03
    @root << el = XML::Node.new_cdata('mycdata')
    el << "_this_is_added"
    assert_equal '<root><![CDATA[mycdata_this_is_added]]></root>',
      @root.to_s.gsub(/\n\s*/,'')
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
libxml-ruby-0.7.0 test/tc_xml_node_cdata.rb
libxml-ruby-0.7.0-x86-mswin32-60 test/tc_xml_node_cdata.rb
libxml-ruby-0.8.0 test/tc_xml_node_cdata.rb
libxml-ruby-0.8.1 test/tc_xml_node_cdata.rb
libxml-ruby-0.8.0-x86-mswin32-60 test/tc_xml_node_cdata.rb
libxml-ruby-0.8.1-x86-mswin32-60 test/tc_xml_node_cdata.rb