diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-14 04:51:30 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-14 04:51:30 +0000 |
commit | 2af1ab88da52f38a7450a6455bc28aa93c8e4e57 (patch) | |
tree | d5fea29ca36a63900bd06b21c6598f9bb7950957 /t | |
parent | e9d8cdc0682791dad6e1ddeac96716205beff833 (diff) | |
download | perl-2af1ab88da52f38a7450a6455bc28aa93c8e4e57.tar.gz |
A swath of VERSION patches from Nicholas Clark.
p4raw-id: //depot/perl@20688
Diffstat (limited to 't')
-rw-r--r-- | t/TestInit.pm | 2 | ||||
-rw-r--r-- | t/lib/MakeMaker/Test/Utils.pm | 2 | ||||
-rw-r--r-- | t/lib/Math/BigInt/BareCalc.pm | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/t/TestInit.pm b/t/TestInit.pm index d06f7255ae..aa76fe194b 100644 --- a/t/TestInit.pm +++ b/t/TestInit.pm @@ -15,6 +15,8 @@ package TestInit; +$VERSION = 1.01; + chdir 't' if -d 't'; @INC = '../lib'; diff --git a/t/lib/MakeMaker/Test/Utils.pm b/t/lib/MakeMaker/Test/Utils.pm index be3ec73d74..4fdb736477 100644 --- a/t/lib/MakeMaker/Test/Utils.pm +++ b/t/lib/MakeMaker/Test/Utils.pm @@ -9,7 +9,7 @@ use vars qw($VERSION @ISA @EXPORT); require Exporter; @ISA = qw(Exporter); -$VERSION = 0.02; +$VERSION = 0.03; @EXPORT = qw(which_perl perl_lib makefile_name makefile_backup make make_run run make_macro calibrate_mtime diff --git a/t/lib/Math/BigInt/BareCalc.pm b/t/lib/Math/BigInt/BareCalc.pm index 1a69e4035d..cfd4ae848a 100644 --- a/t/lib/Math/BigInt/BareCalc.pm +++ b/t/lib/Math/BigInt/BareCalc.pm @@ -8,7 +8,7 @@ require Exporter; use vars qw/@ISA $VERSION/; @ISA = qw(Exporter); -$VERSION = '0.02'; +$VERSION = '0.03'; # Package to to test Bigint's simulation of Calc |