diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-15 13:45:03 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-15 13:45:03 +0000 |
commit | 99e89e1e858bb38487deb1f7e553bcf4759385b8 (patch) | |
tree | 6bcc5dc32d7f9f2ec73ffd5fa77b6ff3cfc5c4c6 /lib | |
parent | d8ab2b9dd4c5e9e1e9f42ae63678c8ff9cabf430 (diff) | |
download | perl-99e89e1e858bb38487deb1f7e553bcf4759385b8.tar.gz |
Update (kinda) to Test 1.14, from Joshua Pritikin.
p4raw-id: //depot/perl@6631
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Test.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Test.pm b/lib/Test.pm index c708f57a05..c18d3812e5 100644 --- a/lib/Test.pm +++ b/lib/Test.pm @@ -1,11 +1,10 @@ use strict; package Test; -use 5.005_64; use Test::Harness 1.1601 (); use Carp; our($VERSION, @ISA, @EXPORT, @EXPORT_OK, $ntest, $TestLevel); #public-ish our($TESTOUT, $ONFAIL, %todo, %history, $planned, @FAILDETAIL); #private-ish -$VERSION = '1.13'; +$VERSION = '1.14'; require Exporter; @ISA=('Exporter'); @EXPORT=qw(&plan &ok &skip); |