And then add the Dev::Null from Test-Simple-0.80
Nicholas Clark [Tue, 26 Aug 2008 13:49:24 +0000 (13:49 +0000)]
p4raw-id: //depot/perl@34230

MANIFEST
lib/Test/Simple/t/lib/Dev/Null.pm [new file with mode: 0644]

index 280177c..be98306 100644 (file)
--- 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 (file)
index 0000000..0aaf3c0
--- /dev/null
@@ -0,0 +1,6 @@
+package Dev::Null;
+
+sub TIEHANDLE { bless {} }
+sub PRINT { 1 }
+
+1;