p4raw-id: //depot/perl@9671
# starting with list of languages/countries/currencies.
#
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
use Locale::Country;
use Locale::Language;
use Locale::Currency;
# constants.t - tests for Locale::Constants
#
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
use Locale::Constants;
print "1..3\n";
# country.t - tests for Locale::Country
#
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
use Locale::Country;
#-----------------------------------------------------------------------
#
# currency.t - tests for Locale::Currency
#
+
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
use Locale::Currency;
#-----------------------------------------------------------------------
#
# language.t - tests for Locale::Language
#
+
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
use Locale::Language;
#-----------------------------------------------------------------------
# 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');
# Testing of Pod::Find
# Author: Marek Rouchal <marek@saftsack.fs.uni-bayreuth.de>
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+}
+
$| = 1;
use Test;