summaryrefslogtreecommitdiff
path: root/test/rexml/test_lightparser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rexml/test_lightparser.rb')
-rw-r--r--test/rexml/test_lightparser.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/rexml/test_lightparser.rb b/test/rexml/test_lightparser.rb
index d492e0b456..4aa465b9fa 100644
--- a/test/rexml/test_lightparser.rb
+++ b/test/rexml/test_lightparser.rb
@@ -2,13 +2,13 @@ require_relative 'rexml_test_utils'
require 'rexml/parsers/lightparser'
module REXMLTests
-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
+ 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
-end