Remove core @INC setting and chdir boilerplate from Thread::Semaphore's tests.
Nicholas Clark [Sun, 11 Oct 2009 13:09:02 +0000 (14:09 +0100)]
dist/Thread-Semaphore/t/01_basic.t
dist/Thread-Semaphore/t/02_errs.t
dist/Thread-Semaphore/t/03_nothreads.t

index 06fc2b2..c5670bd 100644 (file)
@@ -2,10 +2,6 @@ use strict;
 use warnings;
 
 BEGIN {
-    if ($ENV{'PERL_CORE'}){
-        chdir('t');
-        unshift(@INC, '../lib');
-    }
     use Config;
     if (! $Config{'useithreads'}) {
         print("1..0 # SKIP Perl not compiled with 'useithreads'\n");
index 06f0b93..45b0aa9 100644 (file)
@@ -1,13 +1,6 @@
 use strict;
 use warnings;
 
-BEGIN {
-    if ($ENV{'PERL_CORE'}){
-        chdir('t');
-        unshift(@INC, '../lib');
-    }
-}
-
 use Thread::Semaphore;
 
 use Test::More 'tests' => 12;
index 58bcb04..f0454be 100644 (file)
@@ -1,13 +1,6 @@
 use strict;
 use warnings;
 
-BEGIN {
-    if ($ENV{'PERL_CORE'}){
-        chdir('t');
-        unshift(@INC, '../lib');
-    }
-}
-
 use Test::More 'tests' => 4;
 
 use Thread::Semaphore;