Fix tests to be able to run in the core and the CPAN dist
authorGraham Barr <gbarr@pobox.com>
Fri, 26 Oct 2001 13:22:38 +0000 (13:22 +0000)
committerGraham Barr <gbarr@pobox.com>
Fri, 26 Oct 2001 13:22:38 +0000 (13:22 +0000)
p4raw-id: //depot/perl@12681

lib/Net/t/ftp.t
lib/Net/t/hostname.t
lib/Net/t/nntp.t
lib/Net/t/require.t
lib/Net/t/smtp.t

index 46304db..f0d0c11 100644 (file)
@@ -1,5 +1,12 @@
 #!./perl -w
 
+BEGIN {
+    unless (-d 'blib') {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
+
 use Net::Config;
 use Net::FTP;
 
index 3e55ace..3bbe2cf 100644 (file)
@@ -1,3 +1,11 @@
+#!./perl -w
+
+BEGIN {
+    unless (-d 'blib') {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 use Net::Domain qw(hostname domainname hostdomain);
 use Net::Config;
index 1afb588..6b905e3 100644 (file)
@@ -1,5 +1,12 @@
 #!./perl -w
 
+BEGIN {
+    unless (-d 'blib') {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
+
 use Net::Config;
 use Net::NNTP;
 use Net::Cmd qw(CMD_REJECT);
index 39d8f7e..82b0472 100644 (file)
@@ -1,3 +1,11 @@
+#!./perl -w
+
+BEGIN {
+    unless (-d 'blib') {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
 
 print "1..9\n";
 my $i = 1;
index 55607fe..a137a36 100644 (file)
@@ -1,5 +1,12 @@
 #!./perl -w
 
+BEGIN {
+    unless (-d 'blib') {
+       chdir 't' if -d 't';
+       @INC = '../lib';
+    }
+}
+
 use Net::Config;
 use Net::SMTP;