Sha256: 6423901120e15072cbc102383e09316099da8053c00d236627dfb0255d9c0192
Contents?: true
Size: 332 Bytes
Versions: 2
Compression:
Stored size: 332 Bytes
Contents
# $Id: tc_xml_parser2.rb 260 2008-02-01 20:56:58Z transami $ require "libxml" require 'test/unit' class TC_XML_Parser2 < Test::Unit::TestCase def setup() @xp = XML::Parser.new() end def teardown() @xp = nil end def test_ruby_xml_parser_new() assert_instance_of(XML::Parser, @xp) end end # TC_XML_Document
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-0.5.3 | test/tc_xml_parser2.rb |
libxml-ruby-0.5.4 | test/tc_xml_parser2.rb |