X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fbad_variables.t;h=6a8a13938c1ddda6254687165cc8d27f9fb0c785;hb=74377047b825dade7e9cc525fd5971e07e2dd2b1;hp=f18a6a77bd04831eb146716060c8ceb3b4662170;hpb=a27f74569232aedbe0a104c26fb7d99c8049686b;p=p5sagit%2Flocal-lib.git diff --git a/t/bad_variables.t b/t/bad_variables.t index f18a6a7..6a8a139 100644 --- a/t/bad_variables.t +++ b/t/bad_variables.t @@ -1,6 +1,6 @@ use strict; use warnings; -use Test::More tests => 5; +use Test::More tests => 6; use File::Temp 'tempdir'; use Config; use local::lib (); @@ -26,10 +26,12 @@ local::lib->import($dir1); is( $ENV{PERL_LOCAL_LIB_ROOT}, - join($Config{path_sep}, (grep { defined $_ and $_ ne '' } $dir1, $dir2)), + 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');