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