82dee7de92a0bd35 failed to add ext/lib/Makefile.PL. Oops.
[p5sagit/p5-mst-13.2.git] / ext / 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;