Fix xt/subroutine-in-inc.t
Olivier Mengué [Sun, 1 May 2011 03:09:40 +0000 (05:09 +0200)]
xt/subroutine-in-inc.t

index 9186a80..13b0c47 100644 (file)
@@ -7,18 +7,21 @@ plan qw/no_plan/;
 use File::Spec;
 use Cwd;
 use File::Temp qw/ tempdir /;
-my $dir = tempdir( DIR => Cwd::abs_path('t'), CLEANUP => 1 );
 my $base;
 
 sub CODE_in_INC() {
     return scalar grep { ref eq 'CODE' } @INC;
 }
 
+my $dir;
+
 BEGIN {
     $base = CODE_in_INC;
     unshift @INC, sub { };
     splice @INC, 3, 1, sub { };
     push @INC, sub { };
+
+    $dir = tempdir( DIR => Cwd::abs_path('t'), CLEANUP => 1 );
 }
 
 use local::lib( $dir );