git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3581 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2003-03-16 03:57:52 +00:00
Родитель 0eeff37f94
Коммит b6c5aa09a8
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -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)