Upgrade to Test-Simple-0.82.
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / died.t
CommitLineData
ccbd73a4 1#!perl -w
2# $Id: /mirror/googlecode/test-more/t/died.t 60310 2008-09-07T23:47:22.837229Z schwern $
3
4BEGIN {
5 if( $ENV{PERL_CORE} ) {
6 chdir 't';
7 @INC = '../lib';
8 }
9}
10
11# Can't use Test.pm, that's a 5.005 thing.
12package My::Test;
13
14# This has to be a require or else the END block below runs before
15# Test::Builder's own and the ending diagnostics don't come out right.
16require Test::Builder;
17my $TB = Test::Builder->create;
18$TB->plan(tests => 3);
19
20
21package main;
22
23require Test::Simple;
24
25chdir 't';
26push @INC, '../t/lib/';
27require Test::Simple::Catch;
28my($out, $err) = Test::Simple::Catch::caught();
29local $ENV{HARNESS_ACTIVE} = 0;
30
31Test::Simple->import(tests => 1);
32exit 250;
33
34END {
35 $TB->is_eq($out->read, <<OUT);
361..1
37OUT
38
39 $TB->is_eq($err->read, <<ERR);
40# Looks like your test exited with 250 before it could output anything.
41ERR
42
43 $TB->is_eq($?, 250, "exit code");
44
45 exit grep { !$_ } $TB->summary;
46}