The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/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';