Sha256: 5e0c412d37047d08fe25216f5522423a1519b3a418e5902fabea9dd8d86d2765
Contents?: true
Size: 929 Bytes
Versions: 3
Compression:
Stored size: 929 Bytes
Contents
# $Id: tc_xml_parser4.rb,v 1.3 2006/04/17 13:30:19 roscopeco Exp $ require "libxml_test" require 'test/unit' class TC_XML_Parser4 < Test::Unit::TestCase def setup() @xp1 = XML::Parser.new() assert_instance_of(XML::Parser, @xp1) s1 = @xp1.string = '<u>a</u>' assert_instance_of(String, s1) assert_instance_of(String, @xp1.string) assert_equal(s1, @xp1.string) @xp2 = XML::Parser.string('<u>a</u>') assert_instance_of(XML::Parser, @xp2) assert_instance_of(String, @xp2.string) assert_equal(s1, @xp2.string) assert_equal(@xp1.string, @xp2.string) end def teardown() @xp1 = nil @xp2 = nil end def test_ruby_xml_parser_new() assert_instance_of(XML::Parser, @xp1) assert_instance_of(String, @xp1.string) assert_instance_of(XML::Parser, @xp2) assert_instance_of(String, @xp2.string) assert_equal(@xp1.string, @xp2.string) end end # TC_XML_Document
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-0.3.8.4 | tests/tc_xml_parser4.rb |
libxml-ruby-0.3.8 | tests/tc_xml_parser4.rb |
libxml-ruby-0.3.8.2 | tests/tc_xml_parser4.rb |