sync a bunch of files with Test::Simple 0.86
[p5sagit/p5-mst-13.2.git] / t / lib / Test / Simple / sample_tests / death.plx
CommitLineData
4dd974da 1require Test::Simple;
3c4bf434 2# $Id$
4dd974da 3
d020a79a 4push @INC, 't/lib';
5require Test::Simple::Catch;
6my($out, $err) = Test::Simple::Catch::caught();
4dd974da 7
04955c14 8require Dev::Null;
9
4dd974da 10Test::Simple->import(tests => 5);
04955c14 11tie *STDERR, 'Dev::Null';
4dd974da 12
13ok(1);
14ok(1);
15ok(1);
c7623038 16$! = 0;
04955c14 17die "This is a test";