Add core test boilerplate to some base.pm tests
Rafael Garcia-Suarez [Mon, 27 Jul 2009 13:48:21 +0000 (15:48 +0200)]
lib/base/t/compile-time.t
lib/base/t/fields-5.6.0.t
lib/base/t/fields-5.8.0.t

index 2be51f9..f7ffd1f 100644 (file)
@@ -1,5 +1,12 @@
 #!/usr/bin/perl -w
 
+BEGIN {
+   if( $ENV{PERL_CORE} ) {
+        chdir 't' if -d 't';
+        @INC = qw(../lib);
+    }
+}
+
 use strict;
 use Test::More tests => 3;
 
index 93bca34..819c335 100644 (file)
@@ -7,6 +7,13 @@ if( $] >= 5.009 ) {
     exit;
 }
 
+BEGIN {
+   if( $ENV{PERL_CORE} ) {
+        chdir 't' if -d 't';
+        @INC = qw(../lib);
+    }
+}
+
 use strict;
 use vars qw($Total_tests);
 
index 2da1412..af39d0b 100644 (file)
@@ -7,6 +7,12 @@ if( $] >= 5.009 ) {
     exit;
 }
 
+BEGIN {
+   if( $ENV{PERL_CORE} ) {
+        chdir 't' if -d 't';
+        @INC = qw(../lib);
+    }
+}
 
 my $w;