blob: 0485469f2018ffd1da52958aebbfa1947e80bfe6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/perl -w
BEGIN {
unshift @INC, 't/lib/';
}
chdir 't';
use Test::More tests => 1;
use ExtUtils::MakeMaker;
# dir_target() was typo'd as dir_targets()
can_ok('MM', 'dir_target');
|