diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/App/Prove/State')
-rw-r--r-- | Master/tlpkg/tlperl/lib/App/Prove/State/Result.pm | 8 | ||||
-rw-r--r-- | Master/tlpkg/tlperl/lib/App/Prove/State/Result/Test.pm | 9 |
2 files changed, 8 insertions, 9 deletions
diff --git a/Master/tlpkg/tlperl/lib/App/Prove/State/Result.pm b/Master/tlpkg/tlperl/lib/App/Prove/State/Result.pm index 7bb4457efb8..8e44ea3a4b1 100644 --- a/Master/tlpkg/tlperl/lib/App/Prove/State/Result.pm +++ b/Master/tlpkg/tlperl/lib/App/Prove/State/Result.pm @@ -1,10 +1,10 @@ package App::Prove::State::Result; use strict; +use warnings; use Carp 'croak'; use App::Prove::State::Result::Test; -use vars qw($VERSION); use constant STATE_VERSION => 1; @@ -14,11 +14,11 @@ App::Prove::State::Result - Individual test suite results. =head1 VERSION -Version 3.26 +Version 3.30 =cut -$VERSION = '3.26'; +our $VERSION = '3.30'; =head1 DESCRIPTION @@ -29,7 +29,7 @@ single test suite run. =head1 SYNOPSIS # Re-run failed tests - $ prove --state=fail,save -rbv + $ prove --state=failed,save -rbv =cut diff --git a/Master/tlpkg/tlperl/lib/App/Prove/State/Result/Test.pm b/Master/tlpkg/tlperl/lib/App/Prove/State/Result/Test.pm index f626f1da774..21f20a12e61 100644 --- a/Master/tlpkg/tlperl/lib/App/Prove/State/Result/Test.pm +++ b/Master/tlpkg/tlperl/lib/App/Prove/State/Result/Test.pm @@ -1,8 +1,7 @@ package App::Prove::State::Result::Test; use strict; - -use vars qw($VERSION); +use warnings; =head1 NAME @@ -10,11 +9,11 @@ App::Prove::State::Result::Test - Individual test results. =head1 VERSION -Version 3.26 +Version 3.30 =cut -$VERSION = '3.26'; +our $VERSION = '3.30'; =head1 DESCRIPTION @@ -25,7 +24,7 @@ single test. =head1 SYNOPSIS # Re-run failed tests - $ prove --state=fail,save -rbv + $ prove --state=failed,save -rbv =cut |