Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more
12345678910111213141516171819 #!/usr/bin/perl -wBEGIN { unshift @INC, 't/lib/';}use strict;use warnings;use Test::More tests => 3;use Config ();BEGIN { use_ok 'ExtUtils::MakeMaker::Config'; }is $Config{path_sep}, $Config::Config{path_sep};eval { $Config{wibble} = 42;};is $Config{wibble}, 42;
#!/usr/bin/perl -w
BEGIN {
unshift
@INC
,
't/lib/'
;
}
use
strict;
warnings;
Test::More
tests
=> 3;
Config ();
BEGIN { use_ok
'ExtUtils::MakeMaker::Config'
; }
is
$Config
{path_sep},
$Config::Config
{path_sep};
eval
{
{wibble} = 42;
};
{wibble}, 42;