82dee7de92a0bd35 failed to add ext/lib/Makefile.PL. Oops.
[p5sagit/p5-mst-13.2.git] / ext / ExtUtils-MakeMaker / t / backwards.t
1 #!/usr/bin/perl -w
2
3 # This is a test for all the odd little backwards compatible things
4 # MakeMaker has to support.  And we do mean backwards.
5
6 BEGIN {
7     unshift @INC, 't/lib';
8 }
9
10 use strict;
11 use Test::More tests => 2;
12
13 require ExtUtils::MakeMaker;
14
15 # CPAN.pm wants MM.
16 can_ok('MM', 'new');
17
18 # Pre 5.8 ExtUtils::Embed wants MY.
19 can_ok('MY', 'catdir');