diff options
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; + |