Retract #20548 and #20465.
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / plan.t
1 #!/usr/bin/perl -w
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         chdir 't';
6         @INC = '../lib';
7     }
8 }
9
10 use Test::More;
11
12 plan tests => 4;
13 eval { plan tests => 4 };
14 like( $@, '/^You tried to plan twice!/',    'disallow double plan' );
15 eval { plan 'no_plan'  };
16 like( $@, '/^You tried to plan twice!/',    'disallow chaning plan' );
17
18 pass('Just testing plan()');
19 pass('Testing it some more');