diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Test/Builder/Module.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/Test/Builder/Module.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/tlperl/lib/Test/Builder/Module.pm b/Master/tlpkg/tlperl/lib/Test/Builder/Module.pm index 4f7d1aa7db7..12a1e61bc2e 100644 --- a/Master/tlpkg/tlperl/lib/Test/Builder/Module.pm +++ b/Master/tlpkg/tlperl/lib/Test/Builder/Module.pm @@ -7,7 +7,7 @@ use Test::Builder; require Exporter; our @ISA = qw(Exporter); -our $VERSION = '0.94'; +our $VERSION = '0.98'; $VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval) @@ -52,13 +52,13 @@ for you. =head3 import Test::Builder::Module provides an import() method which acts in the -same basic way as Test::More's, setting the plan and controling +same basic way as Test::More's, setting the plan and controlling exporting of functions and variables. This allows your module to set the plan independent of Test::More. All arguments passed to import() are passed onto C<< Your::Module->builder->plan() >> with the exception of -C<import =>[qw(things to import)]>. +C<< import =>[qw(things to import)] >>. use Your::Module import => [qw(this that)], tests => 23; |