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
|
# $Id: tc_xml_parser7.rb 67 2006-04-17 13:30:22Z roscopeco $
require "libxml_test"
require 'test/unit'
class TC_XML_Parser7 < Test::Unit::TestCase
def setup()
@xp = XML::Parser.new()
assert_instance_of(XML::Parser, @xp)
f = File.open('tests/model/rubynet.xml')
f1 = @xp.io = f
assert_instance_of(File, f1)
assert_instance_of(File, @xp.io)
@doc = @xp.parse
assert_instance_of(XML::Document, @doc)
end
def teardown()
@xp = nil
@doc = nil
end
def test_ruby_xml_parser_new()
assert_instance_of(XML::Parser, @xp)
assert_instance_of(File, @xp.io)
assert_instance_of(XML::Document, @doc)
assert_instance_of(String, @doc.version)
end
end
|