summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-16 03:57:52 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-16 03:57:52 +0000
commitb6c5aa09a83e96ca8821c75e81ed2894f83b4d57 (patch)
treef53bcc4954fd0674140b67ab3449efa1212df3c4 /lib
parent0eeff37f94ca82353df343d4edeca8316cdec0c9 (diff)
add test for previous change.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/pp.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/pp.rb b/lib/pp.rb
index 5a5456b3c8..e77f563500 100644
--- a/lib/pp.rb
+++ b/lib/pp.rb
@@ -549,6 +549,11 @@ if __FILE__ == $0
assert_equal(a.inspect + "\n", PP.pp(a, ''))
end
+ def test_anonymous
+ a = Class.new.new
+ assert_equal(a.inspect + "\n", PP.pp(a, ''))
+ end
+
def test_withinspect
a = []
a << HasInspect.new(a)