This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate macperl changes #16974 and #16975;
[perl5.git] / lib / Test / Harness / t / base.t
1 BEGIN {
2     if( $ENV{PERL_CORE} ) {
3         chdir 't';
4         @INC = '../lib';
5     }
6 }
7
8
9 print "1..1\n";
10
11 unless (eval 'require Test::Harness') {
12   print "not ok 1\n";
13 } else {
14   print "ok 1\n";
15 }