Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

#!/usr/bin/perl -w
use strict;
BEGIN {
unshift @INC, 't/lib/';
}
use Test::More tests => 3;
my $MM = bless { MAKE => "nmake6" }, "MM";
is $MM->make, 'nmake';
$MM->{MAKE} = 'GNUmake';
is $MM->make, 'gmake';
$MM->{MAKE} = 'MMS';
is $MM->make, 'mms';