xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/plan_skip_all.t (revision 5759b3d249badf144a6240f7eec4dcf9df003e6b)
1BEGIN {
2    if( $ENV{PERL_CORE} ) {
3        chdir 't';
4        @INC = '../lib';
5    }
6}
7
8use Test::More;
9
10plan skip_all => 'Just testing plan & skip_all';
11
12fail('We should never get here');
13