From: Nicholas Clark Date: Tue, 26 Aug 2008 13:49:24 +0000 (+0000) Subject: And then add the Dev::Null from Test-Simple-0.80 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c1d0a804f428ce4c274008111b0a08fd9fab5b82;p=p5sagit%2Fp5-mst-13.2.git And then add the Dev::Null from Test-Simple-0.80 p4raw-id: //depot/perl@34230 --- diff --git a/MANIFEST b/MANIFEST index 280177c..be98306 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2857,6 +2857,7 @@ lib/Test/Simple/t/is_deeply_dne_bug.t Test::More test lib/Test/Simple/t/is_deeply_fail.t Test::More test, is_deeply() lib/Test/Simple/t/is_deeply_with_threads.t Test::More test lib/Test/Simple/t/is_fh.t Test::Builder test, _is_fh() +lib/Test/Simple/t/lib/Dev/Null.pm Test::More test module lib/Test/Simple/t/lib/Dummy.pm Test::More test module lib/Test/Simple/t/lib/MyOverload.pm Test::More test module lib/Test/Simple/t/lib/NoExporter.pm Test::Simple test module diff --git a/lib/Test/Simple/t/lib/Dev/Null.pm b/lib/Test/Simple/t/lib/Dev/Null.pm new file mode 100644 index 0000000..0aaf3c0 --- /dev/null +++ b/lib/Test/Simple/t/lib/Dev/Null.pm @@ -0,0 +1,6 @@ +package Dev::Null; + +sub TIEHANDLE { bless {} } +sub PRINT { 1 } + +1;