summaryrefslogtreecommitdiff
path: root/cpan/ExtUtils-MakeMaker/t/make.t
blob: 622dbd515fc99dbc37b93e16068ee80e162f095e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/perl -w

BEGIN {
    unshift @INC, 't/lib/';
}

use Test::More tests => 3;

use ExtUtils::MakeMaker;

my $MM = bless { MAKE => "nmake6" }, "MM";
is $MM->make, 'nmake';

$MM->{MAKE} = 'GNUmake';
is $MM->make, 'gmake';

$MM->{MAKE} = 'MMS';
is $MM->make, 'mms';