The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
|
#!/usr/bin/perl -w
my @supported = qw(
ABSTRACT_FROM
AUTHOR
BUILD_REQUIRES
clean
dist
DISTNAME
DISTVNAME
LIBS
MAN3PODS
META_MERGE
MIN_PERL_VERSION
NAME
PL_FILES
PREREQ_PM
VERSION
VERSION_FROM
) ;
my @unsupported = qw(
WIBBLE
wump
) ;
plan tests => @supported + @unsupported ;
for ( @supported ) {
ok exists $ExtUtils::MakeMaker::Recognized_Att_Keys { $_ },
"EUMM says it supports param '$_'" ;
}
for ( @unsupported ) {
ok ! exists $ExtUtils::MakeMaker::Recognized_Att_Keys { $_ },
"EUMM claims not to support param '$_'" ;
}
|