diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-07-06 13:58:58 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-07-06 13:58:58 +0000 |
commit | 9e998a43724115ca2e8c804ade119acbd54d07dd (patch) | |
tree | 20bd70c6f40e78437e7802bfe08e700caa7e84ba /t | |
parent | 457f4f73fc6a8a0a2205d2596dac7b13693d3c40 (diff) | |
download | perl-9e998a43724115ca2e8c804ade119acbd54d07dd.tar.gz |
Upgrade to base and fields 2.12, mostly by Michael G Schwern
p4raw-id: //depot/perl@31540
Diffstat (limited to 't')
-rw-r--r-- | t/lib/Dummy.pm | 4 | ||||
-rw-r--r-- | t/lib/HasSigDie.pm | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/t/lib/Dummy.pm b/t/lib/Dummy.pm new file mode 100644 index 0000000000..504330f8b1 --- /dev/null +++ b/t/lib/Dummy.pm @@ -0,0 +1,4 @@ +package Dummy; + +# Attempt to emulate a bug with finding the version in Exporter. +$VERSION = '5.562'; diff --git a/t/lib/HasSigDie.pm b/t/lib/HasSigDie.pm new file mode 100644 index 0000000000..3368e04995 --- /dev/null +++ b/t/lib/HasSigDie.pm @@ -0,0 +1,6 @@ +package HasSigDie; + +$SIG{__DIE__} = sub { "Die, Bart, Die!" }; + +1; + |