summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 280177c88a..be98306c61 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 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;