be more strict about what shells to test
[p5sagit/local-lib.git] / t / lib-core-only.t
CommitLineData
57ddfe24 1use strict;
2use warnings FATAL => 'all';
3use Test::More tests => 1;
4use lib::core::only ();
5use Config;
6
7is_deeply(
8 [ do { local @INC = @INC; lib::core::only->import; @INC } ],
9 [ $Config{privlibexp}, $Config{archlibexp} ],
10 'lib::core::only mangles @INC correctly'
11);