summaryrefslogtreecommitdiff
path: root/t/op/ver.t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-09-25 14:27:01 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-09-25 14:27:01 +0000
commit69026470e9d2e2c7bf7b03f351d6e98a6d6f29f3 (patch)
treec194809a1212142d6e379732826ee7e74db2bded /t/op/ver.t
parent81ba8d9690fde862b2e9f40e3edd1700854de746 (diff)
downloadperl-69026470e9d2e2c7bf7b03f351d6e98a6d6f29f3.tar.gz
Replace the use Test::More in t/{op,io,run} with t/test.pl.
Note: io/binmode is failing, have to figure out why. p4raw-id: //depot/perl@12198
Diffstat (limited to 't/op/ver.t')
-rwxr-xr-xt/op/ver.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/op/ver.t b/t/op/ver.t
index f64cf47579..31bd09c0fd 100755
--- a/t/op/ver.t
+++ b/t/op/ver.t
@@ -2,7 +2,7 @@
BEGIN {
chdir 't' if -d 't';
- @INC = '../lib';
+ @INC = qw(. ../lib);
$SIG{'__WARN__'} = sub { warn $_[0] if $DOWARN };
}
@@ -11,8 +11,8 @@ $DOWARN = 1; # enable run-time warnings now
use Config;
$tests = $Config{'uvsize'} == 8 ? 47 : 44;
-require Test::More;
-Test::More->import( tests => $tests );
+require "test.pl";
+plan( tests => $tests );
eval { use v5.5.640; };
is( $@, '', "use v5.5.640; $@");