This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to Test-Simple-0.82.
[perl5.git] / lib / Test / Simple / t / filehandles.t
1 #!perl -w
2 # $Id: /mirror/googlecode/test-more/t/filehandles.t 57943 2008-08-18T02:09:22.275428Z brooklyn.kid51  $
3
4 BEGIN {
5     if( $ENV{PERL_CORE} ) {
6         chdir 't';
7         @INC = ('../lib', 'lib');
8     }
9 }
10
11 use lib 't/lib';
12 use Test::More tests => 1;
13 use Dev::Null;
14
15 tie *STDOUT, "Dev::Null" or die $!;
16
17 print "not ok 1\n";     # this should not print.
18 pass 'STDOUT can be mucked with';
19