Move Test::Simple from lib to ext.
[p5sagit/p5-mst-13.2.git] / ext / Test-Simple / t / lib / SigDie.pm
1 package SigDie;
2
3 use strict;
4
5 our $DIE;
6 $SIG{__DIE__} = sub { $DIE = $@ };
7
8 1;