aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_prettyprint.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-04 05:44:27 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-04 05:44:27 +0000
commit45306441865722cb1ea2a08c514b743ce5d512aa (patch)
treeb452bd3ab8f0127bdcb1d16a0ef6358e524d54c0 /test/test_prettyprint.rb
parentc3721fdcfc72e63610f074f396422bdbae8a45da (diff)
downloadruby-45306441865722cb1ea2a08c514b743ce5d512aa.tar.gz
wrap by a module.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25228 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/test_prettyprint.rb')
-rw-r--r--test/test_prettyprint.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_prettyprint.rb b/test/test_prettyprint.rb
index 42178e7d03..1d6b75a569 100644
--- a/test/test_prettyprint.rb
+++ b/test/test_prettyprint.rb
@@ -1,6 +1,8 @@
require 'prettyprint'
require 'test/unit'
+module PrettyPrintTest
+
class WadlerExample < Test::Unit::TestCase # :nodoc:
def setup
@tree = Tree.new("aaaa", Tree.new("bbbbb", Tree.new("ccc"),
@@ -513,3 +515,5 @@ End
end
end
+
+end