Missing std block.
Jarkko Hietaniemi [Tue, 10 Apr 2001 12:38:53 +0000 (12:38 +0000)]
p4raw-id: //depot/perl@9671

t/lib/lc-all.t
t/lib/lc-constants.t
t/lib/lc-country.t
t/lib/lc-currency.t
t/lib/lc-language.t
t/lib/lc-uk.t
t/pod/find.t

index d34feca..ed93c5a 100644 (file)
 # starting with list of languages/countries/currencies.
 #
 
+BEGIN {
+        chdir 't' if -d 't';
+        @INC = '../lib';
+}
+
 use Locale::Country;
 use Locale::Language;
 use Locale::Currency;
index e71103d..359cdfc 100644 (file)
@@ -3,6 +3,11 @@
 # constants.t - tests for Locale::Constants
 #
 
+BEGIN {
+        chdir 't' if -d 't';
+        @INC = '../lib';
+}
+
 use Locale::Constants;
 
 print "1..3\n";
index 535291e..4234d1e 100644 (file)
@@ -3,6 +3,11 @@
 # country.t - tests for Locale::Country
 #
 
+BEGIN {
+        chdir 't' if -d 't';
+        @INC = '../lib';
+}
+
 use Locale::Country;
 
 #-----------------------------------------------------------------------
index f66353c..55a04db 100644 (file)
@@ -2,6 +2,12 @@
 #
 # currency.t - tests for Locale::Currency
 #
+
+BEGIN {
+        chdir 't' if -d 't';
+        @INC = '../lib';
+}
+
 use Locale::Currency;
 
 #-----------------------------------------------------------------------
index b9c25f1..6a70b79 100644 (file)
@@ -2,6 +2,12 @@
 #
 # language.t - tests for Locale::Language
 #
+
+BEGIN {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+}
+
 use Locale::Language;
 
 #-----------------------------------------------------------------------
index 98f71d2..948e2d1 100644 (file)
@@ -3,6 +3,11 @@
 # uk.t - tests for Locale::Country with "uk" aliases to "gb"
 #
 
+BEGIN {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+}
+
 use Locale::Country;
 
 Locale::Country::_alias_code('uk' => 'gb');
index 846b3ac..bb6e9ba 100644 (file)
@@ -1,6 +1,11 @@
 # Testing of Pod::Find
 # Author: Marek Rouchal <marek@saftsack.fs.uni-bayreuth.de>
 
+BEGIN {
+        chdir 't' if -d 't';
+        @INC = '../lib';
+}
+
 $| = 1;
 
 use Test;