summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/rexml/test_document.rb4
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