summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2008-12-15 18:40:45 +0000
committerDave Mitchell <davem@fdisolutions.com>2008-12-15 18:40:45 +0000
commit1a3230f8f8784a37f11c550c4ac8022f73ab4694 (patch)
tree165a1268c7a059459250141ba16fa2e4ff22ad08
parent584ed574b1290b760a5fa71d3a4251bb35653341 (diff)
downloadperl-1a3230f8f8784a37f11c550c4ac8022f73ab4694.tar.gz
Integrate:
[ 34230] And then add the Dev::Null from Test-Simple-0.80 p4raw-link: @34230 on //depot/perl: c1d0a804f428ce4c274008111b0a08fd9fab5b82 p4raw-id: //depot/maint-5.10/perl@35109 p4raw-branched: from //depot/perl@34230 'branch in' lib/Test/Simple/t/lib/Dev/Null.pm p4raw-integrated: from //depot/perl@34230 'merge in' MANIFEST (@34229..)
-rw-r--r--MANIFEST1
-rw-r--r--lib/Test/Simple/t/lib/Dev/Null.pm6
2 files changed, 7 insertions, 0 deletions
diff --git a/MANIFEST b/MANIFEST
index e8dc943206..fc0a5268a5 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -2867,6 +2867,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 0000000000..0aaf3c021b
--- /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;