This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix warning.
[perl5.git] / lib / ExtUtils / t / dir_target.t
CommitLineData
5dca256e
RGS
1#!/usr/bin/perl -w
2
3BEGIN {
4 if( $ENV{PERL_CORE} ) {
5 chdir 't';
6 @INC = ('../lib', 'lib/');
7 }
8 else {
9 unshift @INC, 't/lib/';
10 }
11}
12chdir 't';
13
14use Test::More tests => 1;
15use ExtUtils::MakeMaker;
16
7292dc67
RGS
17# dir_target() was typo'd as dir_targets()
18can_ok('MM', 'dir_target');