From ef5450b5033d35a804bd4f7374253d9bf18997ae Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 27 Sep 2009 04:08:31 +0000 Subject: * lib/pp.rb (PP:ObjectMixin#pretty_print): delegates has no inspect method. [ruby-core:25804] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25122 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_pp.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'test') diff --git a/test/test_pp.rb b/test/test_pp.rb index 180977004..604cbc509 100644 --- a/test/test_pp.rb +++ b/test/test_pp.rb @@ -1,6 +1,9 @@ require 'pp' +require 'delegate' require 'test/unit' +module PPTestModule + class PPTest < Test::Unit::TestCase def test_list0123_12 assert_equal("[0, 1, 2, 3]\n", PP.pp([0,1,2,3], '', 12)) @@ -178,3 +181,13 @@ class PPSingleLineTest < Test::Unit::TestCase assert_equal("[1#{', 1'*99}]", PP.singleline_pp([1]*100, '')) end end + +class PPDelegateTest < Test::Unit::TestCase + class A < DelegateClass(Array); end + + def test_delegate + assert_equal("[]\n", A.new([]).pretty_inspect, "[ruby-core:25804]") + end +end + +end -- cgit