summaryrefslogtreecommitdiff
path: root/lib/Test/Simple/t/plan_skip_all.t
blob: 13335a4927a2c9536537b34b92c691d5f38ac3f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# $Id$
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');