move mk_temp_dir into a lib so we can reuse it
[p5sagit/local-lib.git] / t / bad_variables.t
index 4aa0229..a7ba32b 100644 (file)
@@ -5,13 +5,15 @@ 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} || '';
 
-my $dir1 = tempdir('test_local_lib-XXXXX', DIR => Cwd::abs_path('t'), CLEANUP => 1);
-my $dir2 = tempdir('test_local_lib-XXXXX', DIR => Cwd::abs_path('t'), CLEANUP => 1);
-my $dir3 = tempdir('test_local_lib-XXXXX', DIR => Cwd::abs_path('t'), CLEANUP => 1);
+my $dir1 = mk_temp_dir('test_local_lib-XXXXX');
+my $dir2 = mk_temp_dir('test_local_lib-XXXXX');
+my $dir3 = mk_temp_dir('test_local_lib-XXXXX');
 
 ok(!(grep { $dir1 eq $_ } @INC), 'new dir is not already in @INC');
 ok(!(grep { $dir1 eq $_ } split /\Q$Config{path_sep}\E/, ($ENV{PERL5LIB}||'')), 'new dir is not already in PERL5LIB');