diff options
author | Michael G. Schwern <schwern@pobox.com> | 2003-10-30 07:51:03 -0800 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2003-10-30 22:37:26 +0000 |
commit | f7218ed4fb64f81a57ca3333cb9e28f01f115558 (patch) | |
tree | 10a151ff7afdc10e2b17261abcf4f8638f106198 | |
parent | 2d981f2701e9f92843f194f91d9b984eefa4793e (diff) | |
download | perl-f7218ed4fb64f81a57ca3333cb9e28f01f115558.tar.gz |
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-id: //depot/perl@21583
-rw-r--r-- | t/op/sub.t | 6 |
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 {} |