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 {
7    unshift @INC, 't/lib';
8}
9
10use strict;
11use warnings;
12use Test::More tests => 2;
13
14require ExtUtils::MakeMaker;
15
16# CPAN.pm wants MM.
17can_ok('MM', 'new');
18
19# Pre 5.8 ExtUtils::Embed wants MY.
20can_ok('MY', 'catdir');
21