system: Linux mars.sprixweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
| Direktori : /usr/share/doc/perl-Test-Simple-0.98/t/ |
| Current File : //usr/share/doc/perl-Test-Simple-0.98/t/note.t |
#!/usr/bin/perl -w
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir 't';
@INC = ('../lib', 'lib');
}
else {
unshift @INC, 't/lib';
}
}
use strict;
use warnings;
use Test::Builder::NoOutput;
use Test::More tests => 2;
{
my $tb = Test::Builder::NoOutput->create;
$tb->note("foo");
$tb->reset_outputs;
is $tb->read('out'), "# foo\n";
is $tb->read('err'), '';
}