diff options
author | ayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-09-26 18:52:10 +0000 |
---|---|---|
committer | ayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-09-26 18:52:10 +0000 |
commit | 379d519f0b5d06e54d262f56131b64d3ef25ef68 (patch) | |
tree | 6e06f50d36ba61b6b8fdae87f862774a6f689379 | |
parent | 81ed2fda7b8c4c03abc18ba2e2e9ff6e74966a62 (diff) |
* test/rexml/test_sax.rb: add require 'rexml/document.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33343 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | test/rexml/test_sax.rb | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Tue Sep 27 03:50:19 2011 Ayumu AIZAWA <ayumu.aizawa@gmail.com> + + * test/rexml/test_sax.rb: add require 'rexml/document'. + Tue Sep 27 03:32:27 2011 Ayumu AIZAWA <ayumu.aizawa@gmail.com> * test/psych/test_yamldbm.rb: fix #setup and #terdown. diff --git a/test/rexml/test_sax.rb b/test/rexml/test_sax.rb index f5d7fb44ce..8873e1703d 100644 --- a/test/rexml/test_sax.rb +++ b/test/rexml/test_sax.rb @@ -1,6 +1,7 @@ require "rexml_test_utils" require 'rexml/sax2listener' require 'rexml/parsers/sax2parser' +require 'rexml/document' class SAX2Tester < Test::Unit::TestCase include REXMLTestUtils |