Remove broken links for hip communications inc.
[p5sagit/p5-mst-13.2.git] / ext / Test-Simple / t / note.t
1 #!/usr/bin/perl -w
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         chdir 't';
6         @INC = ('../lib', 'lib');
7     }
8     else {
9         unshift @INC, 't/lib';
10     }
11 }
12
13 use strict;
14 use warnings;
15
16 use Test::Builder::NoOutput;
17
18 use Test::More tests => 2;
19
20 {
21     my $tb = Test::Builder::NoOutput->create;
22
23     $tb->note("foo");
24
25     $tb->reset_outputs;
26
27     is $tb->read('out'), "# foo\n";
28     is $tb->read('err'), '';
29 }
30