82dee7de92a0bd35 failed to add ext/lib/Makefile.PL. Oops.
[p5sagit/p5-mst-13.2.git] / ext / ExtUtils-MakeMaker / t / backwards.t
CommitLineData
45bc4d3a 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
6BEGIN {
b78fd716 7 unshift @INC, 't/lib';
45bc4d3a 8}
9
10use strict;
11use Test::More tests => 2;
12
13require ExtUtils::MakeMaker;
14
15# CPAN.pm wants MM.
16can_ok('MM', 'new');
17
18# Pre 5.8 ExtUtils::Embed wants MY.
19can_ok('MY', 'catdir');