Remove broken links for hip communications inc.
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / skipall.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
15 use Test::More;
16
17 my $Test = Test::Builder->create;
18 $Test->plan(tests => 2);
19
20 my $out = '';
21 my $err = '';
22 {
23     my $tb = Test::More->builder;
24     $tb->output(\$out);
25     $tb->failure_output(\$err);
26
27     plan 'skip_all';
28 }
29
30 END {
31     $Test->is_eq($out, "1..0 # SKIP\n");
32     $Test->is_eq($err, "");
33 }