This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
aca3dc6ff54f2add7f99d55d9cb038757ae7a47a
[perl5.git] / cpan / ExtUtils-MakeMaker / t / config.t
1 #!/usr/bin/perl -w
2
3 BEGIN {
4     unshift @INC, 't/lib/';
5 }
6
7 use Test::More tests => 3;
8 use Config ();
9
10 BEGIN { use_ok 'ExtUtils::MakeMaker::Config'; }
11
12 is $Config{path_sep}, $Config::Config{path_sep};
13
14 eval {
15     $Config{wibble} = 42;
16 };
17 is $Config{wibble}, 42;