1use Test::Builder; 2# HARNESS-NO-STREAM 3 4BEGIN { 5 if( $ENV{PERL_CORE} ) { 6 chdir 't'; 7 @INC = '../lib'; 8 } 9} 10 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# suppressed the ending diagnostics. 20pass; 21print "ok 2\n"; 22print "ok 3\n"; 23