X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fbad_variables.t;h=6a8a13938c1ddda6254687165cc8d27f9fb0c785;hb=c3f6eefbefd51c0993675fb56a57f545a2c86bca;hp=1de140c438f317979546b4aebd9b868a0a66ba97;hpb=b5e3ee380a7291bf638a10b7110d7f0af9b6bc5c;p=p5sagit%2Flocal-lib.git diff --git a/t/bad_variables.t b/t/bad_variables.t index 1de140c..6a8a139 100644 --- a/t/bad_variables.t +++ b/t/bad_variables.t @@ -1,16 +1,13 @@ use strict; use warnings; -use Test::More tests => 5; +use Test::More tests => 6; use File::Temp 'tempdir'; use Config; use local::lib (); use lib 't/lib'; use TempDir; -# remember the original value of this, in case we are already running inside a -# local::lib -my $orig_llr = $ENV{PERL_LOCAL_LIB_ROOT} || ''; -$orig_llr = '' if $orig_llr eq $Config{path_sep}; +delete $ENV{PERL_LOCAL_LIB_ROOT}; my $dir1 = mk_temp_dir('test_local_lib-XXXXX'); my $dir2 = mk_temp_dir('test_local_lib-XXXXX'); @@ -23,16 +20,18 @@ local::lib->import($dir1); local::lib->import($dir2); # we have junk in here now -$ENV{PERL_LOCAL_LIB_ROOT} .= $Config{path_sep} . $dir3; +$ENV{PERL_LOCAL_LIB_ROOT} = $dir3 . $Config{path_sep} . $ENV{PERL_LOCAL_LIB_ROOT}; local::lib->import($dir1); is( $ENV{PERL_LOCAL_LIB_ROOT}, - join($Config{path_sep}, (grep { defined $_ and $_ ne '' } $orig_llr, $dir2, $dir1)), - 'dir1 should have been removed and added back in at the top (PERL_LOCAL_LIB_ROOT was ' . $orig_llr . ')', + join($Config{path_sep}, (grep { defined $_ and $_ ne '' } $dir1, $dir3, $dir2)), + 'dir1 should have been removed and added back in at the top' ); +ok((!grep { $_ eq $dir3 } local::lib->active_paths), 'junk dir added not included in active_paths'); + ok((grep { /\Q$dir1\E/ } @INC), 'new dir has been added to @INC'); ok((grep { /\Q$dir1\E/ } split /\Q$Config{path_sep}\E/, $ENV{PERL5LIB}), 'new dir has been added to PERL5LIB');