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