summaryrefslogtreecommitdiff
path: root/lib/Test/Harness/t/base.t
blob: 5ad05e90f7b9413be6afe4fa5f7a9e11d2e3081f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
BEGIN {
    if( $ENV{PERL_CORE} ) {
        chdir 't';
        @INC = '../lib';
    }
}


print "1..1\n";

unless (eval 'require Test::Harness') {
  print "not ok 1\n";
} else {
  print "ok 1\n";
}