diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-08-26 13:49:24 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-08-26 13:49:24 +0000 |
commit | c1d0a804f428ce4c274008111b0a08fd9fab5b82 (patch) | |
tree | d64739b6660997a388d9afe7ea42276fd97d97e3 /lib | |
parent | 6dcddb8726532c0ca8ed36e0327e2ff80954f12c (diff) | |
download | perl-c1d0a804f428ce4c274008111b0a08fd9fab5b82.tar.gz |
And then add the Dev::Null from Test-Simple-0.80
p4raw-id: //depot/perl@34230
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Test/Simple/t/lib/Dev/Null.pm | 6 |
1 files changed, 6 insertions, 0 deletions
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; |