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');
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 '' } $dir2, $dir1)),
+ 'dir1 should have been removed and added back in at the top'
);
ok((grep { /\Q$dir1\E/ } @INC), 'new dir has been added to @INC');