82dee7de92a0bd35 failed to add ext/lib/Makefile.PL. Oops.
[p5sagit/p5-mst-13.2.git] / ext / ExtUtils-MakeMaker / t / config.t
CommitLineData
7292dc67 1#!/usr/bin/perl -w
2
3BEGIN {
b78fd716 4 unshift @INC, 't/lib/';
7292dc67 5}
6
7use Test::More tests => 3;
8use Config ();
9
10BEGIN { use_ok 'ExtUtils::MakeMaker::Config'; }
11
12is $Config{path_sep}, $Config::Config{path_sep};
13
14eval {
15 $Config{wibble} = 42;
16};
17is $Config{wibble}, 42;