aboutsummaryrefslogtreecommitdiffstats
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.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/rexml/test_lightparser.rb b/test/rexml/test_lightparser.rb
index 14dcdc21e7..e0d44231c6 100644
--- a/test/rexml/test_lightparser.rb
+++ b/test/rexml/test_lightparser.rb
@@ -1,10 +1,11 @@
-require 'test/unit/testcase'
+require 'rexml_test_utils'
require 'rexml/parsers/lightparser'
class LightParserTester < Test::Unit::TestCase
+ include REXMLTestUtils
include REXML
def test_parsing
- f = File.new( "test/data/documentation.xml" )
+ f = File.new(fixture_path("documentation.xml"))
parser = REXML::Parsers::LightParser.new( f )
root = parser.parse
end