aboutsummaryrefslogtreecommitdiffstats
path: root/test/rexml/test_preceding_sibling.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 10:21:10 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-27 10:21:10 +0000
commit13a8d735d9de444d08e6cfaf61e5a765d6d7ec7a (patch)
tree6989084700fb465f04dc4e54ce803649dbb24e08 /test/rexml/test_preceding_sibling.rb
parent1c35277c2bfecaf1128f05d8644b247fbd5ef461 (diff)
downloadruby-13a8d735d9de444d08e6cfaf61e5a765d6d7ec7a.tar.gz
Wrap REXML test classes by REXML module.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46166 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rexml/test_preceding_sibling.rb')
-rw-r--r--test/rexml/test_preceding_sibling.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/rexml/test_preceding_sibling.rb b/test/rexml/test_preceding_sibling.rb
index 632e4dad85..d3cc0e092b 100644
--- a/test/rexml/test_preceding_sibling.rb
+++ b/test/rexml/test_preceding_sibling.rb
@@ -2,6 +2,7 @@
require 'test/unit'
require 'rexml/document'
+module REXML
# daz - for report by Dan Kohn in:
# http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/156328
class XPathTesterDd < Test::Unit::TestCase
@@ -36,3 +37,4 @@ class XPathTesterDd < Test::Unit::TestCase
assert_equal( "<b x='ab01A'><c y='abc01A'>Success</c></b>", arr.join )
end
end
+end