summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2003-10-30 07:51:03 -0800
committerNicholas Clark <nick@ccl4.org>2003-10-30 22:54:30 +0000
commit329dbf03a0bd1d216535ad6d12f0895f8835ed70 (patch)
treefa64be6d232ffc234d4cef75fbcdc8219b494df0
parent3a8e8a3bc5b1eb617f1d0f57503e5cb0dc8d8331 (diff)
downloadperl-329dbf03a0bd1d216535ad6d12f0895f8835ed70.tar.gz
Integrate:
[ 21583] Rewrite to correctly use test.pl Subject: Re: Fix for the orange lion bug - aka empty sub bug Message-ID: <20031030235103.GC27017@localhost.comcast.net> p4raw-link: @21583 on //depot/perl: f7218ed4fb64f81a57ca3333cb9e28f01f115558 p4raw-id: //depot/maint-5.8/perl@21585 p4raw-integrated: from //depot/perl@21584 'copy in' t/op/sub.t (@21582..)
-rw-r--r--t/op/sub.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/op/sub.t b/t/op/sub.t
index b76d34cb72..b6f90f4895 100644
--- a/t/op/sub.t
+++ b/t/op/sub.t
@@ -1,12 +1,12 @@
-#!./perl
+#!./perl -w
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
- require Config; import Config;
+ require './test.pl';
}
-use Test::More tests => 4;
+plan( tests => 4 );
sub empty_sub {}