Upgrade to Test::Simple 0.33.
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / no_header.t
1 BEGIN {
2     chdir 't' if -d 't';
3     @INC = '../lib';
4 }
5
6 # STDOUT must be unbuffered else our prints might come out after
7 # Test::More's.
8 $| = 1;
9
10 use Test::Builder;
11
12 # STDOUT must be unbuffered else our prints might come out after
13 # Test::More's.
14 $| = 1;
15
16 BEGIN {
17     Test::Builder->new->no_header(1);
18 }
19
20 use Test::More tests => 1;
21
22 print "1..1\n";
23 pass;