This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move ExtUtils::MakeMaker from ext/ to cpan/
[perl5.git] / cpan / ExtUtils-MakeMaker / t / make.t
CommitLineData
2977d345
RGS
1#!/usr/bin/perl -w
2
3BEGIN {
b78fd716 4 unshift @INC, 't/lib/';
2977d345
RGS
5}
6
7use Test::More tests => 3;
8
9use ExtUtils::MakeMaker;
10
11my $MM = bless { MAKE => "nmake6" }, "MM";
12is $MM->make, 'nmake';
13
14$MM->{MAKE} = 'GNUmake';
15is $MM->make, 'gmake';
16
17$MM->{MAKE} = 'MMS';
18is $MM->make, 'mms';