This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add Test::Simple from Michael G Schwern.
[perl5.git] / t / lib / Test / Simple / sample_tests / death.plx
1 require Test::Simple;
2
3 push @INC, 't', '.';
4 require Catch;
5 my($out, $err) = Catch::caught();
6
7 Test::Simple->import(tests => 5);
8 close STDERR;
9
10 ok(1);
11 ok(1);
12 ok(1);
13 die "Knife?";