summaryrefslogtreecommitdiff
path: root/test/rexml/test_lightparser.rb
blob: 0fbf8bcefb6d1ff2e6dcb43ccafcee8a61208441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative 'rexml_test_utils'
require 'rexml/parsers/lightparser'

module REXML
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 )
    parser.parse
  end
end
end