aboutsummaryrefslogtreecommitdiffstats
path: root/test/rexml/test_lightparser.rb
blob: e0d44231c6302ec5032c0516bd79996d465c73e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'rexml_test_utils'
require 'rexml/parsers/lightparser'

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