Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more
12345678910111213141516 #!/usr/bin/perl -wBEGIN { unshift @INC, 't/lib';}use strict;use warnings;use Test::More tests => 1;use ExtUtils::MakeMaker;eval q{ os_unsupported();};like( $@, qr/^OS unsupported$/, 'OS Unsupported' );
#!/usr/bin/perl -w
BEGIN {
unshift
@INC
,
't/lib'
;
}
use
strict;
warnings;
Test::More
tests
=> 1;
ExtUtils::MakeMaker;
eval
q{
os_unsupported();
like( $@,
qr/^OS unsupported$/
'OS Unsupported'
);