Remove broken links for hip communications inc.
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / plan_bad.t
1 #!/usr/bin/perl -w
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         chdir 't';
6         @INC = '../lib';
7     }
8 }
9
10
11 use Test::More tests => 12;
12 use Test::Builder;
13 my $tb = Test::Builder->create;
14 $tb->level(0);
15
16 ok !eval { $tb->plan( tests => 'no_plan' ); };
17 is $@, sprintf "Number of tests must be a positive integer.  You gave it 'no_plan' at %s line %d.\n", $0, __LINE__ - 1;
18
19 my $foo = [];
20 my @foo = ($foo, 2, 3);
21 ok !eval { $tb->plan( tests => @foo ) };
22 is $@, sprintf "Number of tests must be a positive integer.  You gave it '$foo' at %s line %d.\n", $0, __LINE__ - 1;
23
24 ok !eval { $tb->plan( tests => 9.99 ) };
25 is $@, sprintf "Number of tests must be a positive integer.  You gave it '9.99' at %s line %d.\n", $0, __LINE__ - 1;
26
27 #line 25
28 ok !eval { $tb->plan( tests => -1 ) };
29 is $@, "Number of tests must be a positive integer.  You gave it '-1' at $0 line 25.\n";
30
31 #line 29
32 ok !eval { $tb->plan( tests => '' ) };
33 is $@, "You said to run 0 tests at $0 line 29.\n";
34
35 #line 33
36 ok !eval { $tb->plan( 'wibble' ) };
37 is $@, "plan() doesn't understand wibble at $0 line 33.\n";