Move Test::Simple from lib to ext.
[p5sagit/p5-mst-13.2.git] / ext / Test-Simple / t / filehandles.t
CommitLineData
33459055 1#!perl -w
2
a9153838 3BEGIN {
4 if( $ENV{PERL_CORE} ) {
5 chdir 't';
45140536 6 @INC = ('../lib', 'lib');
a9153838 7 }
8}
9
04955c14 10use lib 't/lib';
33459055 11use Test::More tests => 1;
04955c14 12use Dev::Null;
33459055 13
14tie *STDOUT, "Dev::Null" or die $!;
15
16print "not ok 1\n"; # this should not print.
17pass 'STDOUT can be mucked with';
18