sync a bunch of files with Test::Simple 0.86
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / Builder / no_ending.t
CommitLineData
3c4bf434 1# $Id$
a9153838 2use Test::Builder;
3
33459055 4BEGIN {
a9153838 5 if( $ENV{PERL_CORE} ) {
6 chdir 't';
7 @INC = '../lib';
8 }
33459055 9}
10
33459055 11BEGIN {
12 my $t = Test::Builder->new;
13 $t->no_ending(1);
14}
15
16use Test::More tests => 3;
17
18# Normally, Test::More would yell that we ran too few tests, but we
19# supressed the ending diagnostics.
20pass;
21print "ok 2\n";
22print "ok 3\n";