diff options
author | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-05-27 13:15:58 +0000 |
---|---|---|
committer | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-05-27 13:15:58 +0000 |
commit | 875f0715007bc2155b92e78f931a1bf4e8f2da3f (patch) | |
tree | 391c6b8110c293e672d309ab47a94b5e0213fb57 /test/rexml | |
parent | cb50e15e0d3e8670ba9961df41ba25686a4c3dd9 (diff) | |
download | ruby-875f0715007bc2155b92e78f931a1bf4e8f2da3f.tar.gz |
* test/rexml/test_document.rb: Wrap by REXMLTests module.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46176 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rexml')
-rw-r--r-- | test/rexml/test_document.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/rexml/test_document.rb b/test/rexml/test_document.rb index cec9452373..a6fdc3b3dc 100644 --- a/test/rexml/test_document.rb +++ b/test/rexml/test_document.rb @@ -3,7 +3,8 @@ require "rexml/document" require "test/unit" -class REXML::TestDocument < Test::Unit::TestCase +module REXMLTests +class TestDocument < Test::Unit::TestCase def test_version_attributes_to_s doc = REXML::Document.new(<<-eoxml) <?xml version="1.0" encoding="UTF-8" standalone="no"?> @@ -317,3 +318,4 @@ EOX end end end +end |