Change 34230 by [EMAIL PROTECTED] on 2008/08/26 13:49:24
And then add the Dev::Null from Test-Simple-0.80
Affected files ...
... //depot/perl/MANIFEST#1718 edit
... //depot/perl/lib/Test/Simple/t/lib/Dev/Null.pm#1 add
Differences ...
==== //depot/perl/MANIFEST#1718 (text) ====
Index: perl/MANIFEST
--- perl/MANIFEST#1717~34229~ 2008-08-26 06:29:49.000000000 -0700
+++ perl/MANIFEST 2008-08-26 06:49:24.000000000 -0700
@@ -2857,6 +2857,7 @@
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
==== //depot/perl/lib/Test/Simple/t/lib/Dev/Null.pm#1 (text) ====
Index: perl/lib/Test/Simple/t/lib/Dev/Null.pm
--- /dev/null 2008-08-26 01:15:08.532840418 -0700
+++ perl/lib/Test/Simple/t/lib/Dev/Null.pm 2008-08-26 06:49:24.000000000
-0700
@@ -0,0 +1,6 @@
+package Dev::Null;
+
+sub TIEHANDLE { bless {} }
+sub PRINT { 1 }
+
+1;
End of Patch.