summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-08-26 14:12:49 +0000
committerNicholas Clark <nick@ccl4.org>2008-08-26 14:12:49 +0000
commitfe0438b3fdd7184c1a19b7c24a3a26460d03083a (patch)
tree44d8dbe45e50ad1a25138a9a17e115c7ceeb3b93 /t
parentc1d0a804f428ce4c274008111b0a08fd9fab5b82 (diff)
downloadperl-fe0438b3fdd7184c1a19b7c24a3a26460d03083a.tar.gz
Khaaaaan! Change 34230 wasn't right. The tests all passed because I
had a(nother) copy of Dev::Null in the "right" place. So make that right place official. p4raw-id: //depot/perl@34231
Diffstat (limited to 't')
-rw-r--r--t/lib/Dev/Null.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/lib/Dev/Null.pm b/t/lib/Dev/Null.pm
new file mode 100644
index 0000000000..0aaf3c021b
--- /dev/null
+++ b/t/lib/Dev/Null.pm
@@ -0,0 +1,6 @@
+package Dev::Null;
+
+sub TIEHANDLE { bless {} }
+sub PRINT { 1 }
+
+1;