summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/t/Legacy/plan_skip_all.t
blob: 528df5f50d4b31059f65983797fd4228ecf25c81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
BEGIN {
    if( $ENV{PERL_CORE} ) {
        chdir 't';
        @INC = '../lib';
    }
}

use Test::More;

plan skip_all => 'Just testing plan & skip_all';

fail('We should never get here');