xref: /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/backwards.t (revision f2da64fbbbf1b03f09f390ab01267c93dfd77c4c)
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 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');
20