summaryrefslogtreecommitdiff
path: root/test/rexml/test_lightparser.rb
blob: 14dcdc21e7cd284bcfe35baa5395d843483d5d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'test/unit/testcase'
require 'rexml/parsers/lightparser'

class LightParserTester < Test::Unit::TestCase
	include REXML
	def test_parsing
		f = File.new( "test/data/documentation.xml" )
		parser = REXML::Parsers::LightParser.new( f )
		root = parser.parse
	end
end