use $Config{path_sep} in tests, not :
[p5sagit/local-lib.git] / t / bad_variables.t
1 use strict;
2 use warnings;
3 use Test::More tests => 5;
4 use File::Temp 'tempdir';
5 use Config;
6 use local::lib ();
7
8 # remember the original value of this, in case we are already running inside a
9 # local::lib
10 my $orig_llr = $ENV{PERL_LOCAL_LIB_ROOT} || '';
11
12 my $dir1 = tempdir('test_local_lib-XXXXX', DIR => Cwd::abs_path('t'), CLEANUP => 1);
13 my $dir2 = tempdir('test_local_lib-XXXXX', DIR => Cwd::abs_path('t'), CLEANUP => 1);
14 my $dir3 = tempdir('test_local_lib-XXXXX', DIR => Cwd::abs_path('t'), CLEANUP => 1);
15
16 ok(!(grep { $dir1 eq $_ } @INC), 'new dir is not already in @INC');
17 ok(!(grep { $dir1 eq $_ } split /\Q$Config{path_sep}\E/, ($ENV{PERL5LIB}||'')), 'new dir is not already in PERL5LIB');
18
19 local::lib->import($dir1);
20 local::lib->import($dir2);
21
22 # we have junk in here now
23 $ENV{PERL_LOCAL_LIB_ROOT} .= $Config{path_sep} . $dir3;
24
25 local::lib->import($dir1);
26
27 is(
28     $ENV{PERL_LOCAL_LIB_ROOT},
29     join($Config{path_sep}, (grep { $_ } $orig_llr, $dir2, $dir1)),
30     'dir1 should have been removed and added back in at the top',
31 );
32
33 ok((grep { /\Q$dir1\E/ } @INC), 'new dir has been added to @INC');
34 ok((grep { /\Q$dir1\E/ } split /\Q$Config{path_sep}\E/, $ENV{PERL5LIB}), 'new dir has been added to PERL5LIB');
35