1N/A#!/usr/bin/perl -w
1N/A
1N/A# This is a test for all the odd little backwards compatible things
1N/A# MakeMaker has to support. And we do mean backwards.
1N/A
1N/ABEGIN {
1N/A if( $ENV{PERL_CORE} ) {
1N/A chdir 't' if -d 't';
1N/A @INC = ('../lib', 'lib');
1N/A }
1N/A else {
1N/A unshift @INC, 't/lib';
1N/A }
1N/A}
1N/A
1N/Ause strict;
1N/Ause Test::More tests => 2;
1N/A
1N/Arequire ExtUtils::MakeMaker;
1N/A
1N/A# CPAN.pm wants MM.
1N/Acan_ok('MM', 'new');
1N/A
1N/A# Pre 5.8 ExtUtils::Embed wants MY.
1N/Acan_ok('MY', 'catdir');