diff --git a/MANIFEST b/MANIFEST index 2200e62ff609..ef3406c4c7ae 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2586,6 +2586,7 @@ cpan/Test-Simple/lib/Test2/Compare/Set.pm Test-Simple cpan/Test-Simple/lib/Test2/Compare/String.pm Test-Simple cpan/Test-Simple/lib/Test2/Compare/Undef.pm Test-Simple cpan/Test-Simple/lib/Test2/Compare/Wildcard.pm Test-Simple +cpan/Test-Simple/lib/Test2/Env.pm Test-Simple cpan/Test-Simple/lib/Test2/Event.pm Module related to Test::Simple cpan/Test-Simple/lib/Test2/Event/Bail.pm Module related to Test::Simple cpan/Test-Simple/lib/Test2/Event/Diag.pm Module related to Test::Simple diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 720ef20027e7..82966ad1db7d 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1110,8 +1110,8 @@ package Maintainers; }, 'Test::Simple' => { - 'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302206.tar.gz', - 'SYNCINFO' => 'jkeenan on Mon Dec 23 16:57:46 2024', + 'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302207.tar.gz', + 'SYNCINFO' => 'jkeenan on Sun Jan 5 06:26:14 2025', 'FILES' => q[cpan/Test-Simple], 'EXCLUDED' => [ qr{^examples/}, diff --git a/cpan/Test-Simple/lib/Test/Builder.pm b/cpan/Test-Simple/lib/Test/Builder.pm index 95101de13638..f80d8cfd3ddf 100644 --- a/cpan/Test-Simple/lib/Test/Builder.pm +++ b/cpan/Test-Simple/lib/Test/Builder.pm @@ -4,7 +4,7 @@ use 5.006; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Scalar::Util qw/blessed reftype weaken/; diff --git a/cpan/Test-Simple/lib/Test/Builder/Formatter.pm b/cpan/Test-Simple/lib/Test/Builder/Formatter.pm index eea3631dedad..558b86a277df 100644 --- a/cpan/Test-Simple/lib/Test/Builder/Formatter.pm +++ b/cpan/Test-Simple/lib/Test/Builder/Formatter.pm @@ -2,7 +2,7 @@ package Test::Builder::Formatter; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Formatter::TAP; our @ISA = qw(Test2::Formatter::TAP) } diff --git a/cpan/Test-Simple/lib/Test/Builder/Module.pm b/cpan/Test-Simple/lib/Test/Builder/Module.pm index fa9f15b52cea..cfe7caa34eaa 100644 --- a/cpan/Test-Simple/lib/Test/Builder/Module.pm +++ b/cpan/Test-Simple/lib/Test/Builder/Module.pm @@ -7,7 +7,7 @@ use Test::Builder; require Exporter; our @ISA = qw(Exporter); -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; =head1 NAME diff --git a/cpan/Test-Simple/lib/Test/Builder/Tester.pm b/cpan/Test-Simple/lib/Test/Builder/Tester.pm index 2904ec0a51ff..85563bdd4ef6 100644 --- a/cpan/Test-Simple/lib/Test/Builder/Tester.pm +++ b/cpan/Test-Simple/lib/Test/Builder/Tester.pm @@ -1,7 +1,7 @@ package Test::Builder::Tester; use strict; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test::Builder; use Symbol; diff --git a/cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm b/cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm index ac13bd8764ae..121365b397c1 100644 --- a/cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm +++ b/cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm @@ -1,7 +1,7 @@ package Test::Builder::Tester::Color; use strict; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; require Test::Builder::Tester; diff --git a/cpan/Test-Simple/lib/Test/Builder/TodoDiag.pm b/cpan/Test-Simple/lib/Test/Builder/TodoDiag.pm index 3a81760f27cf..06fe3c398617 100644 --- a/cpan/Test-Simple/lib/Test/Builder/TodoDiag.pm +++ b/cpan/Test-Simple/lib/Test/Builder/TodoDiag.pm @@ -2,7 +2,7 @@ package Test::Builder::TodoDiag; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event::Diag; our @ISA = qw(Test2::Event::Diag) } diff --git a/cpan/Test-Simple/lib/Test/More.pm b/cpan/Test-Simple/lib/Test/More.pm index 81293aa458aa..154eb97fa25c 100644 --- a/cpan/Test-Simple/lib/Test/More.pm +++ b/cpan/Test-Simple/lib/Test/More.pm @@ -17,7 +17,7 @@ sub _carp { return warn @_, " at $file line $line\n"; } -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test::Builder::Module; our @ISA = qw(Test::Builder::Module); @@ -395,7 +395,7 @@ different from some other value: isnt $obj, $clone, "clone() produces a different object"; Historically we supported an C function as an alias of -C, however in Perl 5.37.9 support for the use of aprostrophe as +C, however in Perl 5.37.9 support for the use of apostrophe as a package separator was deprecated and by Perl 5.42.0 support for it will have been removed completely. Accordingly use of C is also deprecated, and will produce warnings when used unless 'deprecated' @@ -2002,6 +2002,10 @@ comes from. L Most commonly needed test functions and features. +=head1 ENVIRONMENT VARIABLES + +See L for a list of meaningul environment variables. + =head1 AUTHORS Michael G Schwern Eschwern@pobox.comE with much inspiration diff --git a/cpan/Test-Simple/lib/Test/Simple.pm b/cpan/Test-Simple/lib/Test/Simple.pm index 59a50ac5f7a4..c2f1265b9480 100644 --- a/cpan/Test-Simple/lib/Test/Simple.pm +++ b/cpan/Test-Simple/lib/Test/Simple.pm @@ -4,7 +4,7 @@ use 5.006; use strict; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test::Builder::Module; our @ISA = qw(Test::Builder::Module); diff --git a/cpan/Test-Simple/lib/Test/Tester.pm b/cpan/Test-Simple/lib/Test/Tester.pm index 7b6960f8cb3b..9a1f1ca18f44 100644 --- a/cpan/Test-Simple/lib/Test/Tester.pm +++ b/cpan/Test-Simple/lib/Test/Tester.pm @@ -16,7 +16,7 @@ use Test::Tester::Delegate; require Exporter; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; our @EXPORT = qw( run_tests check_tests check_test cmp_results show_space ); our @ISA = qw( Exporter ); diff --git a/cpan/Test-Simple/lib/Test/Tester/Capture.pm b/cpan/Test-Simple/lib/Test/Tester/Capture.pm index 728e643cf0be..2187fdf7ff4a 100644 --- a/cpan/Test-Simple/lib/Test/Tester/Capture.pm +++ b/cpan/Test-Simple/lib/Test/Tester/Capture.pm @@ -2,7 +2,7 @@ use strict; package Test::Tester::Capture; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test::Builder; diff --git a/cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm b/cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm index acad169d99e0..02374ce17861 100644 --- a/cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm +++ b/cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm @@ -3,7 +3,7 @@ use strict; package Test::Tester::CaptureRunner; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test::Tester::Capture; diff --git a/cpan/Test-Simple/lib/Test/Tester/Delegate.pm b/cpan/Test-Simple/lib/Test/Tester/Delegate.pm index 100f76afe177..5fa30ca2dec1 100644 --- a/cpan/Test-Simple/lib/Test/Tester/Delegate.pm +++ b/cpan/Test-Simple/lib/Test/Tester/Delegate.pm @@ -3,7 +3,7 @@ use warnings; package Test::Tester::Delegate; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Scalar::Util(); diff --git a/cpan/Test-Simple/lib/Test/use/ok.pm b/cpan/Test-Simple/lib/Test/use/ok.pm index ddeacdd1fea0..3a2756257a95 100644 --- a/cpan/Test-Simple/lib/Test/use/ok.pm +++ b/cpan/Test-Simple/lib/Test/use/ok.pm @@ -1,7 +1,7 @@ package Test::use::ok; use 5.005; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; __END__ diff --git a/cpan/Test-Simple/lib/Test2.pm b/cpan/Test-Simple/lib/Test2.pm index c3c022d67789..30e37ce61095 100644 --- a/cpan/Test-Simple/lib/Test2.pm +++ b/cpan/Test-Simple/lib/Test2.pm @@ -2,7 +2,7 @@ package Test2; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/API.pm b/cpan/Test-Simple/lib/Test2/API.pm index f975604fcea5..07db9c39f5fc 100644 --- a/cpan/Test-Simple/lib/Test2/API.pm +++ b/cpan/Test-Simple/lib/Test2/API.pm @@ -10,7 +10,7 @@ BEGIN { $ENV{TEST2_ACTIVE} = 1; } -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; my $INST; @@ -808,6 +808,39 @@ sub run_subtest { # called. require Test2::API::Context; +# If the env var was set to load plugins, load them now, this is the earliest +# safe point to do so. +if (my $plugins = $ENV{TEST2_ENABLE_PLUGINS}) { + for my $p (split /\s*,\s*/, $plugins) { + $p = "Test2::Plugin::$p" unless $p =~ s/^\+//; + my $mod = "$p.pm"; + $mod =~ s{::}{/}g; + + if ($ENV{HARNESS_IS_VERBOSE} || !$ENV{HARNESS_ACTIVE}) { + # If the harness is verbose then just display the message for all to + # see. It is nice info and they already asked for noisy output. + + test2_add_callback_post_load(sub { + test2_stack()->top; # Ensure we have at least 1 hub. + my ($hub) = test2_stack()->all; + $hub->send( + Test2::Event::Note->new( + trace => Test2::Util::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__, $p]), + message => "Loaded plugin '$p' as specified in the TEST2_ENABLE_PLUGINS env var.", + ), + ); + }); + } + + eval { + package main; + require $mod; + $p->import; + 1 + } or die "Could not load plugin '$p', which was specified in the TEST2_ENABLE_PLUGINS env var ($plugins): $@"; + } +} + 1; __END__ @@ -911,6 +944,10 @@ documentation for details on how to best use it. ... And others ... +=head1 ENVIRONMENT VARIABLES + +See L for a list of meaningul environment variables. + =head1 MAIN API EXPORTS All exports are optional. You must specify subs to import. diff --git a/cpan/Test-Simple/lib/Test2/API/Breakage.pm b/cpan/Test-Simple/lib/Test2/API/Breakage.pm index 076b3f17dc59..07a32b83b84d 100644 --- a/cpan/Test-Simple/lib/Test2/API/Breakage.pm +++ b/cpan/Test-Simple/lib/Test2/API/Breakage.pm @@ -2,7 +2,7 @@ package Test2::API::Breakage; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util qw/pkg_to_file/; diff --git a/cpan/Test-Simple/lib/Test2/API/Context.pm b/cpan/Test-Simple/lib/Test2/API/Context.pm index 26d90d3d1b64..beddc9280700 100644 --- a/cpan/Test-Simple/lib/Test2/API/Context.pm +++ b/cpan/Test-Simple/lib/Test2/API/Context.pm @@ -2,7 +2,7 @@ package Test2::API::Context; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/confess croak/; diff --git a/cpan/Test-Simple/lib/Test2/API/Instance.pm b/cpan/Test-Simple/lib/Test2/API/Instance.pm index 254131d92cb0..fca6edaefc1b 100644 --- a/cpan/Test-Simple/lib/Test2/API/Instance.pm +++ b/cpan/Test-Simple/lib/Test2/API/Instance.pm @@ -2,7 +2,7 @@ package Test2::API::Instance; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; our @CARP_NOT = qw/Test2::API Test2::API::Instance Test2::IPC::Driver Test2::Formatter/; use Carp qw/confess carp/; diff --git a/cpan/Test-Simple/lib/Test2/API/InterceptResult.pm b/cpan/Test-Simple/lib/Test2/API/InterceptResult.pm index a04a00d1d304..07b7afb32961 100644 --- a/cpan/Test-Simple/lib/Test2/API/InterceptResult.pm +++ b/cpan/Test-Simple/lib/Test2/API/InterceptResult.pm @@ -2,7 +2,7 @@ package Test2::API::InterceptResult; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Scalar::Util qw/blessed/; use Test2::Util qw/pkg_to_file/; diff --git a/cpan/Test-Simple/lib/Test2/API/InterceptResult/Event.pm b/cpan/Test-Simple/lib/Test2/API/InterceptResult/Event.pm index d8fc55edf62f..ad32ff6376be 100644 --- a/cpan/Test-Simple/lib/Test2/API/InterceptResult/Event.pm +++ b/cpan/Test-Simple/lib/Test2/API/InterceptResult/Event.pm @@ -2,7 +2,7 @@ package Test2::API::InterceptResult::Event; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use List::Util qw/first/; use Test2::Util qw/pkg_to_file/; @@ -650,7 +650,7 @@ Possible briefs: "SKIP ALL" "SKIP ALL: $why" -Note that only the first applicable brief is returned. This is essnetially a +Note that only the first applicable brief is returned. This is essentially a poor-mans TAP that only includes facets that could (but not necessarily do) cause a failure. @@ -944,7 +944,7 @@ bail-out was requested. =item EMPTY_LIST_OR_STRING = $event->bailout_brief -Get the brief of the balout if present. +Get the brief of the bailout if present. =item EMPTY_LIST_OR_STRING = $event->bailout_reason diff --git a/cpan/Test-Simple/lib/Test2/API/InterceptResult/Facet.pm b/cpan/Test-Simple/lib/Test2/API/InterceptResult/Facet.pm index 2429be4f3acf..d35d2c75c747 100644 --- a/cpan/Test-Simple/lib/Test2/API/InterceptResult/Facet.pm +++ b/cpan/Test-Simple/lib/Test2/API/InterceptResult/Facet.pm @@ -2,7 +2,7 @@ package Test2::API::InterceptResult::Facet; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::EventFacet; diff --git a/cpan/Test-Simple/lib/Test2/API/InterceptResult/Hub.pm b/cpan/Test-Simple/lib/Test2/API/InterceptResult/Hub.pm index ffdcee7bf205..9f0019fa2a71 100644 --- a/cpan/Test-Simple/lib/Test2/API/InterceptResult/Hub.pm +++ b/cpan/Test-Simple/lib/Test2/API/InterceptResult/Hub.pm @@ -2,7 +2,7 @@ package Test2::API::InterceptResult::Hub; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Hub; our @ISA = qw(Test2::Hub) } use Test2::Util::HashBase; diff --git a/cpan/Test-Simple/lib/Test2/API/InterceptResult/Squasher.pm b/cpan/Test-Simple/lib/Test2/API/InterceptResult/Squasher.pm index fab99d8c5372..1fc208d6f607 100644 --- a/cpan/Test-Simple/lib/Test2/API/InterceptResult/Squasher.pm +++ b/cpan/Test-Simple/lib/Test2/API/InterceptResult/Squasher.pm @@ -2,7 +2,7 @@ package Test2::API::InterceptResult::Squasher; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; use List::Util qw/first/; diff --git a/cpan/Test-Simple/lib/Test2/API/Stack.pm b/cpan/Test-Simple/lib/Test2/API/Stack.pm index ab436b105688..cc075896ab69 100644 --- a/cpan/Test-Simple/lib/Test2/API/Stack.pm +++ b/cpan/Test-Simple/lib/Test2/API/Stack.pm @@ -2,7 +2,7 @@ package Test2::API::Stack; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Hub(); diff --git a/cpan/Test-Simple/lib/Test2/AsyncSubtest.pm b/cpan/Test-Simple/lib/Test2/AsyncSubtest.pm index 62bb542072c5..642834b3a0e4 100644 --- a/cpan/Test-Simple/lib/Test2/AsyncSubtest.pm +++ b/cpan/Test-Simple/lib/Test2/AsyncSubtest.pm @@ -4,7 +4,7 @@ use warnings; use Test2::IPC; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; our @CARP_NOT = qw/Test2::Util::HashBase/; diff --git a/cpan/Test-Simple/lib/Test2/AsyncSubtest/Event/Attach.pm b/cpan/Test-Simple/lib/Test2/AsyncSubtest/Event/Attach.pm index 805d249f3849..20090b55c8a8 100644 --- a/cpan/Test-Simple/lib/Test2/AsyncSubtest/Event/Attach.pm +++ b/cpan/Test-Simple/lib/Test2/AsyncSubtest/Event/Attach.pm @@ -2,7 +2,7 @@ package Test2::AsyncSubtest::Event::Attach; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use base 'Test2::Event'; use Test2::Util::HashBase qw/id/; diff --git a/cpan/Test-Simple/lib/Test2/AsyncSubtest/Event/Detach.pm b/cpan/Test-Simple/lib/Test2/AsyncSubtest/Event/Detach.pm index 2a8ce224f8a5..f005572d4977 100644 --- a/cpan/Test-Simple/lib/Test2/AsyncSubtest/Event/Detach.pm +++ b/cpan/Test-Simple/lib/Test2/AsyncSubtest/Event/Detach.pm @@ -2,7 +2,7 @@ package Test2::AsyncSubtest::Event::Detach; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use base 'Test2::Event'; use Test2::Util::HashBase qw/id/; diff --git a/cpan/Test-Simple/lib/Test2/AsyncSubtest/Formatter.pm b/cpan/Test-Simple/lib/Test2/AsyncSubtest/Formatter.pm index f8d031e24a35..1dd3092f3de3 100644 --- a/cpan/Test-Simple/lib/Test2/AsyncSubtest/Formatter.pm +++ b/cpan/Test-Simple/lib/Test2/AsyncSubtest/Formatter.pm @@ -2,7 +2,7 @@ package Test2::AsyncSubtest::Formatter; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; die "Should not load this anymore"; diff --git a/cpan/Test-Simple/lib/Test2/AsyncSubtest/Hub.pm b/cpan/Test-Simple/lib/Test2/AsyncSubtest/Hub.pm index 668a70fc8eb0..7ebbe7bc31d3 100644 --- a/cpan/Test-Simple/lib/Test2/AsyncSubtest/Hub.pm +++ b/cpan/Test-Simple/lib/Test2/AsyncSubtest/Hub.pm @@ -2,7 +2,7 @@ package Test2::AsyncSubtest::Hub; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use base 'Test2::Hub::Subtest'; use Test2::Util::HashBase qw/ast_ids ast/; diff --git a/cpan/Test-Simple/lib/Test2/Bundle.pm b/cpan/Test-Simple/lib/Test2/Bundle.pm index 8ceef0419a23..d0de8863a687 100644 --- a/cpan/Test-Simple/lib/Test2/Bundle.pm +++ b/cpan/Test-Simple/lib/Test2/Bundle.pm @@ -2,7 +2,7 @@ package Test2::Bundle; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Bundle/Extended.pm b/cpan/Test-Simple/lib/Test2/Bundle/Extended.pm index 1c679c27d113..1ea01d64b892 100644 --- a/cpan/Test-Simple/lib/Test2/Bundle/Extended.pm +++ b/cpan/Test-Simple/lib/Test2/Bundle/Extended.pm @@ -4,7 +4,7 @@ use warnings; use Test2::V0; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { push @Test2::Bundle::Extended::ISA => 'Test2::V0'; diff --git a/cpan/Test-Simple/lib/Test2/Bundle/More.pm b/cpan/Test-Simple/lib/Test2/Bundle/More.pm index 549ee87b2e05..6218c445d95b 100644 --- a/cpan/Test-Simple/lib/Test2/Bundle/More.pm +++ b/cpan/Test-Simple/lib/Test2/Bundle/More.pm @@ -2,7 +2,7 @@ package Test2::Bundle::More; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Plugin::ExitSummary; diff --git a/cpan/Test-Simple/lib/Test2/Bundle/Simple.pm b/cpan/Test-Simple/lib/Test2/Bundle/Simple.pm index ed77305dbc88..32f28c36ad9b 100644 --- a/cpan/Test-Simple/lib/Test2/Bundle/Simple.pm +++ b/cpan/Test-Simple/lib/Test2/Bundle/Simple.pm @@ -2,7 +2,7 @@ package Test2::Bundle::Simple; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Plugin::ExitSummary; diff --git a/cpan/Test-Simple/lib/Test2/Compare.pm b/cpan/Test-Simple/lib/Test2/Compare.pm index dc52bcdb3329..1b06857dfd90 100644 --- a/cpan/Test-Simple/lib/Test2/Compare.pm +++ b/cpan/Test-Simple/lib/Test2/Compare.pm @@ -2,7 +2,7 @@ package Test2::Compare; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Scalar::Util qw/blessed/; use Test2::Util qw/try/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Array.pm b/cpan/Test-Simple/lib/Test2/Compare/Array.pm index 72c127bec4d8..4957c033d76c 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Array.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Array.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/inref meta ending items order for_each/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Bag.pm b/cpan/Test-Simple/lib/Test2/Compare/Bag.pm index da87e47c810c..b260a130d702 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Bag.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Bag.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/ending meta items for_each/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Base.pm b/cpan/Test-Simple/lib/Test2/Compare/Base.pm index e1a1d7700185..d01036144405 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Base.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Base.pm @@ -2,7 +2,7 @@ package Test2::Compare::Base; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/confess croak/; use Scalar::Util qw/blessed/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Bool.pm b/cpan/Test-Simple/lib/Test2/Compare/Bool.pm index 25df7d601d48..1c4cc1763b10 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Bool.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Bool.pm @@ -6,7 +6,7 @@ use Carp qw/confess/; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/input/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Custom.pm b/cpan/Test-Simple/lib/Test2/Compare/Custom.pm index 1e08d80463fc..cf9ced11e180 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Custom.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Custom.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/code name operator stringify_got/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/DeepRef.pm b/cpan/Test-Simple/lib/Test2/Compare/DeepRef.pm index bbedb985ad70..a5da75c21c48 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/DeepRef.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/DeepRef.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/input/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Delta.pm b/cpan/Test-Simple/lib/Test2/Compare/Delta.pm index 6774c7c3dbab..12f21e077b2a 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Delta.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Delta.pm @@ -2,7 +2,7 @@ package Test2::Compare::Delta; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw{verified id got chk children dne exception note}; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Event.pm b/cpan/Test-Simple/lib/Test2/Compare/Event.pm index 351af87e3960..959baa270a6e 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Event.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Event.pm @@ -8,7 +8,7 @@ use Test2::Compare::EventMeta(); use base 'Test2::Compare::Object'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/etype/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/EventMeta.pm b/cpan/Test-Simple/lib/Test2/Compare/EventMeta.pm index 2cd863374ee7..f2d2f27f012a 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/EventMeta.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/EventMeta.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Meta'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Float.pm b/cpan/Test-Simple/lib/Test2/Compare/Float.pm index a1842932228f..18cbf80de939 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Float.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Float.pm @@ -6,7 +6,7 @@ use Carp qw/confess/; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; our $DEFAULT_TOLERANCE = 1e-08; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Hash.pm b/cpan/Test-Simple/lib/Test2/Compare/Hash.pm index b6ad0be99dcc..5de936970491 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Hash.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Hash.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/inref meta ending items order for_each_key for_each_val/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Isa.pm b/cpan/Test-Simple/lib/Test2/Compare/Isa.pm index 17d302eadc77..39b6bdc39c32 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Isa.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Isa.pm @@ -7,7 +7,7 @@ use Scalar::Util qw/blessed/; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/input/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Meta.pm b/cpan/Test-Simple/lib/Test2/Compare/Meta.pm index 59baa9e30a1c..32b35baa071d 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Meta.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Meta.pm @@ -7,7 +7,7 @@ use Test2::Compare::Isa(); use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/items/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Negatable.pm b/cpan/Test-Simple/lib/Test2/Compare/Negatable.pm index 5e161fbee310..17df67678bbf 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Negatable.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Negatable.pm @@ -2,7 +2,7 @@ package Test2::Compare::Negatable; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; require overload; require Test2::Util::HashBase; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Number.pm b/cpan/Test-Simple/lib/Test2/Compare/Number.pm index 8699443f68eb..5443ca5bcfba 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Number.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Number.pm @@ -6,7 +6,7 @@ use Carp qw/confess/; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/input mode/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Object.pm b/cpan/Test-Simple/lib/Test2/Compare/Object.pm index 88923be015eb..4b8f5b945a25 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Object.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Object.pm @@ -8,7 +8,7 @@ use Test2::Compare::Meta(); use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/calls meta refcheck ending/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/OrderedSubset.pm b/cpan/Test-Simple/lib/Test2/Compare/OrderedSubset.pm index b6866fd2c7ae..39ef30cb6978 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/OrderedSubset.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/OrderedSubset.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/inref items/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Pattern.pm b/cpan/Test-Simple/lib/Test2/Compare/Pattern.pm index 8039c7a077d8..582488d3d14a 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Pattern.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Pattern.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/pattern stringify_got/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Ref.pm b/cpan/Test-Simple/lib/Test2/Compare/Ref.pm index 0006edc14a33..08bf6bdd322e 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Ref.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Ref.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/input/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Regex.pm b/cpan/Test-Simple/lib/Test2/Compare/Regex.pm index dd55692d6a6d..4c54a1e2d7a6 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Regex.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Regex.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/input/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Scalar.pm b/cpan/Test-Simple/lib/Test2/Compare/Scalar.pm index 91d700fcd2e9..a1bbd0ab2974 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Scalar.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Scalar.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/item/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Set.pm b/cpan/Test-Simple/lib/Test2/Compare/Set.pm index 689310978795..e86304bfc878 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Set.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Set.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/checks _reduction/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/String.pm b/cpan/Test-Simple/lib/Test2/Compare/String.pm index 8877d2e3b46c..e81004dc4b82 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/String.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/String.pm @@ -6,7 +6,7 @@ use Carp qw/confess/; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/input/; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Undef.pm b/cpan/Test-Simple/lib/Test2/Compare/Undef.pm index d2eeb7165cbb..54d33690d047 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Undef.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Undef.pm @@ -6,7 +6,7 @@ use Carp qw/confess/; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase; diff --git a/cpan/Test-Simple/lib/Test2/Compare/Wildcard.pm b/cpan/Test-Simple/lib/Test2/Compare/Wildcard.pm index ecc610c608b7..534308920063 100644 --- a/cpan/Test-Simple/lib/Test2/Compare/Wildcard.pm +++ b/cpan/Test-Simple/lib/Test2/Compare/Wildcard.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Compare::Base'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/expect/; diff --git a/cpan/Test-Simple/lib/Test2/Env.pm b/cpan/Test-Simple/lib/Test2/Env.pm new file mode 100644 index 000000000000..eea7b140add8 --- /dev/null +++ b/cpan/Test-Simple/lib/Test2/Env.pm @@ -0,0 +1,133 @@ +package Test2::Env; +use strict; +use warnings; + +our $VERSION = '1.302207'; + +1; + +__END__ + +=pod + +=encoding UTF-8 + +=head1 NAME + +Test2::Env - Documentation for environment variables used or set by Test2. + +=head1 DESCRIPTION + +This is a list of environment variables that are either set by, or read by Test2. + +=head1 AUTHOR_TESTING + +This env var is read by Test2. When set Test2 will run tests that are normally +skipped unless a module author is doing extra author-specific testing. + +=head1 AUTOMATED_TESTING + +This env var is read by Test2. When set this indicates the tests are run by an +automated system and no human interaction is possible. + +See L. + +=head1 EXTENDED_TESTING + +This env var is read by Test2. When set it indicates some extended testing that +should normally be skipped will be run. + +See L. + +=head1 HARNESS_ACTIVE + +This env var is read by Test2. It is usually set by C (L) +or C (L). + +=head1 NONINTERACTIVE_TESTING + +This env var is read by Test2. When set this indicates the testing will not be +interactive. + +See L. + +=head1 RELEASE_TESTING + +This env var is read by Test2. When set this indicates that release testing is +being done, which may run more tests than normal. + +See L. + +=head1 T2_FORMATTER + +This can be used to set the formatter that Test2 will use. If set to a string +without a '+' prefix, then 'Test2::Formatter::' will be added to the start of +the module name. If '+' is present it will be stripped and no further +modification will be made to the module name. + +=head1 T2_IN_PRELOAD + +Test2 sets this when preload mode is active. This is mainly used by +L and similar tools that preload Test2, then fork to run tests. + +=head1 TABLE_TERM_SIZE + +This is used to set a terminal width for things like diagnostic message tables. + +=head1 TEST2_ACTIVE + +Test2 sets this variable when tests are running. + +=head1 TEST2_ENABLE_PLUGINS + +This can be used to force plugins to be loaded whent he Test2 API is loaded. It +takes a list of one or more plugin names seperated by comma. If the module name +does not have a '+' in front of it then the C namespace is +assumed and added. If a '+' is present at the start of a module name it will be +stripped and no further modification will be made. + +Examples: + + TEST2_ENABLE_PLUGINS=BailOnFail + Test2_ENABLE_PLUGINS=SRand,+My::Plugin::Name + +=head1 TEST_ACTIVE + +Set by Test2 when tests are running. + +=head1 TS_MAX_DELTA + +Used to determine how many max lines of output will be provided when is() finds +a deep data strucgture mismatch. + +=head1 SOURCE + +The source code repository for Test2-Suite can be found at +F. + +=head1 MAINTAINERS + +=over 4 + +=item Chad Granum Eexodist@cpan.orgE + +=back + +=head1 AUTHORS + +=over 4 + +=item Chad Granum Eexodist@cpan.orgE + +=back + +=head1 COPYRIGHT + +Copyright Chad Granum Eexodist@cpan.orgE. + +This program is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +See F + +=cut diff --git a/cpan/Test-Simple/lib/Test2/Event.pm b/cpan/Test-Simple/lib/Test2/Event.pm index ee60aafb5a32..bbce64eaae68 100644 --- a/cpan/Test-Simple/lib/Test2/Event.pm +++ b/cpan/Test-Simple/lib/Test2/Event.pm @@ -2,7 +2,7 @@ package Test2::Event; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Scalar::Util qw/blessed reftype/; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/Test2/Event/Bail.pm b/cpan/Test-Simple/lib/Test2/Event/Bail.pm index f327e403847d..f3937369818f 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Bail.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Bail.pm @@ -2,7 +2,7 @@ package Test2::Event::Bail; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) } diff --git a/cpan/Test-Simple/lib/Test2/Event/Diag.pm b/cpan/Test-Simple/lib/Test2/Event/Diag.pm index 59778828c9ea..0869d0e3b3ae 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Diag.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Diag.pm @@ -2,7 +2,7 @@ package Test2::Event::Diag; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) } diff --git a/cpan/Test-Simple/lib/Test2/Event/Encoding.pm b/cpan/Test-Simple/lib/Test2/Event/Encoding.pm index 4f9ec8a216fb..4775ab7cbfaf 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Encoding.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Encoding.pm @@ -2,7 +2,7 @@ package Test2::Event::Encoding; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/Test2/Event/Exception.pm b/cpan/Test-Simple/lib/Test2/Event/Exception.pm index fa9042c80d4f..54f1bfa80601 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Exception.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Exception.pm @@ -2,7 +2,7 @@ package Test2::Event::Exception; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) } diff --git a/cpan/Test-Simple/lib/Test2/Event/Fail.pm b/cpan/Test-Simple/lib/Test2/Event/Fail.pm index df1f88419075..cf1f9c80ef28 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Fail.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Fail.pm @@ -2,7 +2,7 @@ package Test2::Event::Fail; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::EventFacet::Info; diff --git a/cpan/Test-Simple/lib/Test2/Event/Generic.pm b/cpan/Test-Simple/lib/Test2/Event/Generic.pm index 4f0695b5a47d..4e9f8e203de2 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Generic.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Generic.pm @@ -5,7 +5,7 @@ use warnings; use Carp qw/croak/; use Scalar::Util qw/reftype/; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) } use Test2::Util::HashBase; diff --git a/cpan/Test-Simple/lib/Test2/Event/Note.pm b/cpan/Test-Simple/lib/Test2/Event/Note.pm index e4b4d5814509..5fc53ba4ad60 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Note.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Note.pm @@ -2,7 +2,7 @@ package Test2::Event::Note; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) } diff --git a/cpan/Test-Simple/lib/Test2/Event/Ok.pm b/cpan/Test-Simple/lib/Test2/Event/Ok.pm index 25b16923d54c..f65aae1d7374 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Ok.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Ok.pm @@ -2,7 +2,7 @@ package Test2::Event::Ok; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) } diff --git a/cpan/Test-Simple/lib/Test2/Event/Pass.pm b/cpan/Test-Simple/lib/Test2/Event/Pass.pm index 4002dcb43e2e..0e63610cdf20 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Pass.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Pass.pm @@ -2,7 +2,7 @@ package Test2::Event::Pass; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::EventFacet::Info; diff --git a/cpan/Test-Simple/lib/Test2/Event/Plan.pm b/cpan/Test-Simple/lib/Test2/Event/Plan.pm index 0c4a1dfff256..520ec28d3fe5 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Plan.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Plan.pm @@ -2,7 +2,7 @@ package Test2::Event::Plan; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) } diff --git a/cpan/Test-Simple/lib/Test2/Event/Skip.pm b/cpan/Test-Simple/lib/Test2/Event/Skip.pm index 8fba0decfce7..5b109c28a7ec 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Skip.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Skip.pm @@ -2,7 +2,7 @@ package Test2::Event::Skip; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event::Ok; our @ISA = qw(Test2::Event::Ok) } diff --git a/cpan/Test-Simple/lib/Test2/Event/Subtest.pm b/cpan/Test-Simple/lib/Test2/Event/Subtest.pm index 1c80f7884fbe..0cebac1adf91 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Subtest.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Subtest.pm @@ -2,7 +2,7 @@ package Test2::Event::Subtest; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event::Ok; our @ISA = qw(Test2::Event::Ok) } use Test2::Util::HashBase qw{subevents buffered subtest_id subtest_uuid start_stamp stop_stamp}; diff --git a/cpan/Test-Simple/lib/Test2/Event/TAP/Version.pm b/cpan/Test-Simple/lib/Test2/Event/TAP/Version.pm index 0545ade0228e..6b68d022adb6 100644 --- a/cpan/Test-Simple/lib/Test2/Event/TAP/Version.pm +++ b/cpan/Test-Simple/lib/Test2/Event/TAP/Version.pm @@ -2,7 +2,7 @@ package Test2::Event::TAP::Version; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/Test2/Event/V2.pm b/cpan/Test-Simple/lib/Test2/Event/V2.pm index bc5264995802..52613467f6f1 100644 --- a/cpan/Test-Simple/lib/Test2/Event/V2.pm +++ b/cpan/Test-Simple/lib/Test2/Event/V2.pm @@ -2,7 +2,7 @@ package Test2::Event::V2; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Scalar::Util qw/reftype/; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/Test2/Event/Waiting.pm b/cpan/Test-Simple/lib/Test2/Event/Waiting.pm index 4ee2fcce71c6..2e25f236deb0 100644 --- a/cpan/Test-Simple/lib/Test2/Event/Waiting.pm +++ b/cpan/Test-Simple/lib/Test2/Event/Waiting.pm @@ -2,7 +2,7 @@ package Test2::Event::Waiting; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) } diff --git a/cpan/Test-Simple/lib/Test2/EventFacet.pm b/cpan/Test-Simple/lib/Test2/EventFacet.pm index d6535185cead..a19d1c373b04 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet.pm @@ -2,7 +2,7 @@ package Test2::EventFacet; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/-details/; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/About.pm b/cpan/Test-Simple/lib/Test2/EventFacet/About.pm index 87f41eb1ed72..b9a4ff6d034e 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/About.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/About.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::About; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::EventFacet; our @ISA = qw(Test2::EventFacet) } use Test2::Util::HashBase qw{ -package -no_display -uuid -eid }; diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Amnesty.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Amnesty.pm index a49a462db432..7df16bb24d76 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Amnesty.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Amnesty.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Amnesty; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub is_list { 1 } diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Assert.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Assert.pm index 507732dac06d..888dacea1788 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Assert.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Assert.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Assert; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::EventFacet; our @ISA = qw(Test2::EventFacet) } use Test2::Util::HashBase qw{ -pass -no_debug -number }; diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Control.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Control.pm index 58da605e4eb7..c0f7710f14fd 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Control.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Control.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Control; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::EventFacet; our @ISA = qw(Test2::EventFacet) } use Test2::Util::HashBase qw{ -global -terminate -halt -has_callback -encoding -phase }; diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Error.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Error.pm index 682306ecf4e2..d41b599f5902 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Error.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Error.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Error; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub facet_key { 'errors' } sub is_list { 1 } diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Hub.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Hub.pm index 9001da98c919..99318be33a2f 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Hub.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Hub.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Hub; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub is_list { 1 } sub facet_key { 'hubs' } diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Info.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Info.pm index e7fd9ac7997d..1a803cbc3673 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Info.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Info.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Info; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub is_list { 1 } diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Info/Table.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Info/Table.pm index 70d5e6e6a0f9..4c806d9ae94d 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Info/Table.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Info/Table.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Info::Table; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/confess/; diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Meta.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Meta.pm index 17c400ea5e39..ebe1c266f3cc 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Meta.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Meta.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Meta; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::EventFacet; our @ISA = qw(Test2::EventFacet) } diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Parent.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Parent.pm index 7f63292ff8b9..3e0bff622e60 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Parent.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Parent.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Parent; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/confess/; diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Plan.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Plan.pm index bc8e991bbfa2..4aa7edfcced3 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Plan.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Plan.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Plan; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::EventFacet; our @ISA = qw(Test2::EventFacet) } use Test2::Util::HashBase qw{ -count -skip -none }; diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Render.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Render.pm index 9ec216ea41fb..9d5042c255ca 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Render.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Render.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Render; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub is_list { 1 } diff --git a/cpan/Test-Simple/lib/Test2/EventFacet/Trace.pm b/cpan/Test-Simple/lib/Test2/EventFacet/Trace.pm index 94c61dc0ccd6..99723bfaef15 100644 --- a/cpan/Test-Simple/lib/Test2/EventFacet/Trace.pm +++ b/cpan/Test-Simple/lib/Test2/EventFacet/Trace.pm @@ -2,7 +2,7 @@ package Test2::EventFacet::Trace; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::EventFacet; our @ISA = qw(Test2::EventFacet) } diff --git a/cpan/Test-Simple/lib/Test2/Formatter.pm b/cpan/Test-Simple/lib/Test2/Formatter.pm index 948630928951..74e4539136c1 100644 --- a/cpan/Test-Simple/lib/Test2/Formatter.pm +++ b/cpan/Test-Simple/lib/Test2/Formatter.pm @@ -2,7 +2,7 @@ package Test2::Formatter; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; my %ADDED; diff --git a/cpan/Test-Simple/lib/Test2/Formatter/TAP.pm b/cpan/Test-Simple/lib/Test2/Formatter/TAP.pm index 09a0b267dd5e..d487db63c400 100644 --- a/cpan/Test-Simple/lib/Test2/Formatter/TAP.pm +++ b/cpan/Test-Simple/lib/Test2/Formatter/TAP.pm @@ -2,7 +2,7 @@ package Test2::Formatter::TAP; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util qw/clone_io/; diff --git a/cpan/Test-Simple/lib/Test2/Hub.pm b/cpan/Test-Simple/lib/Test2/Hub.pm index 7c064fb0320c..3cc4d1731eb4 100644 --- a/cpan/Test-Simple/lib/Test2/Hub.pm +++ b/cpan/Test-Simple/lib/Test2/Hub.pm @@ -2,7 +2,7 @@ package Test2::Hub; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/carp croak confess/; diff --git a/cpan/Test-Simple/lib/Test2/Hub/Interceptor.pm b/cpan/Test-Simple/lib/Test2/Hub/Interceptor.pm index 8b4bdda235a5..766364b61bc3 100644 --- a/cpan/Test-Simple/lib/Test2/Hub/Interceptor.pm +++ b/cpan/Test-Simple/lib/Test2/Hub/Interceptor.pm @@ -2,7 +2,7 @@ package Test2::Hub::Interceptor; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Hub::Interceptor::Terminator(); diff --git a/cpan/Test-Simple/lib/Test2/Hub/Interceptor/Terminator.pm b/cpan/Test-Simple/lib/Test2/Hub/Interceptor/Terminator.pm index 83560925b4d5..27121f7abd01 100644 --- a/cpan/Test-Simple/lib/Test2/Hub/Interceptor/Terminator.pm +++ b/cpan/Test-Simple/lib/Test2/Hub/Interceptor/Terminator.pm @@ -2,7 +2,7 @@ package Test2::Hub::Interceptor::Terminator; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Hub/Subtest.pm b/cpan/Test-Simple/lib/Test2/Hub/Subtest.pm index 77128fb5ce2b..637aaf27986f 100644 --- a/cpan/Test-Simple/lib/Test2/Hub/Subtest.pm +++ b/cpan/Test-Simple/lib/Test2/Hub/Subtest.pm @@ -2,7 +2,7 @@ package Test2::Hub::Subtest; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::Hub; our @ISA = qw(Test2::Hub) } use Test2::Util::HashBase qw/nested exit_code manual_skip_all/; diff --git a/cpan/Test-Simple/lib/Test2/IPC.pm b/cpan/Test-Simple/lib/Test2/IPC.pm index 11efb018fc39..1296f7943a95 100644 --- a/cpan/Test-Simple/lib/Test2/IPC.pm +++ b/cpan/Test-Simple/lib/Test2/IPC.pm @@ -2,7 +2,7 @@ package Test2::IPC; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::API::Instance; diff --git a/cpan/Test-Simple/lib/Test2/IPC/Driver.pm b/cpan/Test-Simple/lib/Test2/IPC/Driver.pm index 6029beb469f8..fb1c2c30ed45 100644 --- a/cpan/Test-Simple/lib/Test2/IPC/Driver.pm +++ b/cpan/Test-Simple/lib/Test2/IPC/Driver.pm @@ -2,7 +2,7 @@ package Test2::IPC::Driver; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/confess/; diff --git a/cpan/Test-Simple/lib/Test2/IPC/Driver/Files.pm b/cpan/Test-Simple/lib/Test2/IPC/Driver/Files.pm index 04d992cac736..390fc66a0ad7 100644 --- a/cpan/Test-Simple/lib/Test2/IPC/Driver/Files.pm +++ b/cpan/Test-Simple/lib/Test2/IPC/Driver/Files.pm @@ -2,7 +2,7 @@ package Test2::IPC::Driver::Files; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Test2::IPC::Driver; our @ISA = qw(Test2::IPC::Driver) } diff --git a/cpan/Test-Simple/lib/Test2/Manual.pm b/cpan/Test-Simple/lib/Test2/Manual.pm index 5f2d3679675e..a63766ea422d 100644 --- a/cpan/Test-Simple/lib/Test2/Manual.pm +++ b/cpan/Test-Simple/lib/Test2/Manual.pm @@ -2,7 +2,7 @@ package Test2::Manual; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Anatomy.pm b/cpan/Test-Simple/lib/Test2/Manual/Anatomy.pm index 31aa39f69edb..94a2c304c92b 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Anatomy.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Anatomy.pm @@ -2,7 +2,7 @@ package Test2::Manual::Anatomy; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/API.pm b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/API.pm index c2fc8bb42f27..f37857e12fe0 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/API.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/API.pm @@ -2,7 +2,7 @@ package Test2::Manual::Anatomy::API; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Context.pm b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Context.pm index ebf95d5f0284..5cb19a0e4d6e 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Context.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Context.pm @@ -2,7 +2,7 @@ package Test2::Manual::Anatomy::Context; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/EndToEnd.pm b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/EndToEnd.pm index 72010a32c703..4a86b337233b 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/EndToEnd.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/EndToEnd.pm @@ -2,7 +2,7 @@ package Test2::Manual::Anatomy::EndToEnd; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Event.pm b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Event.pm index 015cf9050c39..957a76d39c4f 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Event.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Event.pm @@ -2,7 +2,7 @@ package Test2::Manual::Anatomy::Event; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Hubs.pm b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Hubs.pm index 686b41fbd47b..88594cf7afdb 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Hubs.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Hubs.pm @@ -2,7 +2,7 @@ package Test2::Manual::Anatomy::Hubs; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/IPC.pm b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/IPC.pm index dd7b266da773..4fa7ebfb1cd2 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/IPC.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/IPC.pm @@ -2,7 +2,7 @@ package Test2::Manual::Anatomy::IPC; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Utilities.pm b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Utilities.pm index ee77ff98c5f8..3e366fe5c96c 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Utilities.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Anatomy/Utilities.pm @@ -2,7 +2,7 @@ package Test2::Manual::Anatomy::Utilities; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Concurrency.pm b/cpan/Test-Simple/lib/Test2/Manual/Concurrency.pm index 4b9965a33863..af9b13eebc99 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Concurrency.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Concurrency.pm @@ -2,7 +2,7 @@ package Test2::Manual::Concurrency; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Contributing.pm b/cpan/Test-Simple/lib/Test2/Manual/Contributing.pm index 511f7258827f..f8a95f765dda 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Contributing.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Contributing.pm @@ -1,6 +1,6 @@ package Test2::Manual::Contributing; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Testing.pm b/cpan/Test-Simple/lib/Test2/Manual/Testing.pm index ff03f02095c1..0e3922a3b3ea 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Testing.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Testing.pm @@ -2,7 +2,7 @@ package Test2::Manual::Testing; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Testing/Introduction.pm b/cpan/Test-Simple/lib/Test2/Manual/Testing/Introduction.pm index 9cb7f058f8af..1f9f0f43f032 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Testing/Introduction.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Testing/Introduction.pm @@ -2,7 +2,7 @@ package Test2::Manual::Testing::Introduction; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Testing/Migrating.pm b/cpan/Test-Simple/lib/Test2/Manual/Testing/Migrating.pm index 3eb95e535d7a..6747a02edfe6 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Testing/Migrating.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Testing/Migrating.pm @@ -2,7 +2,7 @@ package Test2::Manual::Testing::Migrating; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Testing/Planning.pm b/cpan/Test-Simple/lib/Test2/Manual/Testing/Planning.pm index 36bd4b7e64b6..456eaa15805a 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Testing/Planning.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Testing/Planning.pm @@ -2,7 +2,7 @@ package Test2::Manual::Testing::Planning; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Testing/Todo.pm b/cpan/Test-Simple/lib/Test2/Manual/Testing/Todo.pm index f66375803600..dfd9e19345b2 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Testing/Todo.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Testing/Todo.pm @@ -2,7 +2,7 @@ package Test2::Manual::Testing::Todo; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling.pm index ea288ae51ff9..4a68e3319c12 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling.pm @@ -2,7 +2,7 @@ package Test2::Manual::Tooling; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling/FirstTool.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling/FirstTool.pm index cac249789690..0c77a22bbdbb 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling/FirstTool.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling/FirstTool.pm @@ -1,6 +1,6 @@ package Test2::Manual::Tooling::FirstTool; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Formatter.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Formatter.pm index 0acdf00a61ab..d17b7591678e 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Formatter.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Formatter.pm @@ -1,6 +1,6 @@ package Test2::Manual::Tooling::Formatter; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Nesting.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Nesting.pm index 5029e1df492a..d2a24aa7c192 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Nesting.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Nesting.pm @@ -2,7 +2,7 @@ package Test2::Manual::Tooling::Nesting; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/TestExit.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/TestExit.pm index 87595eb4ca15..dd23b44a2564 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/TestExit.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/TestExit.pm @@ -1,6 +1,6 @@ package Test2::Manual::Tooling::Plugin::TestExit; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/TestingDone.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/TestingDone.pm index bf43c2652c54..0d44dc1a5616 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/TestingDone.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/TestingDone.pm @@ -1,6 +1,6 @@ package Test2::Manual::Tooling::Plugin::TestingDone; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/ToolCompletes.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/ToolCompletes.pm index 188c0d5666a0..1b4589adfb7c 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/ToolCompletes.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/ToolCompletes.pm @@ -1,6 +1,6 @@ package Test2::Manual::Tooling::Plugin::ToolCompletes; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/ToolStarts.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/ToolStarts.pm index e868a7c4231d..1f5d63458372 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/ToolStarts.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Plugin/ToolStarts.pm @@ -1,6 +1,6 @@ package Test2::Manual::Tooling::Plugin::ToolStarts; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Subtest.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Subtest.pm index bbf1f7fe3c60..50f01407e5c5 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Subtest.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Subtest.pm @@ -2,7 +2,7 @@ package Test2::Manual::Tooling::Subtest; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling/TestBuilder.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling/TestBuilder.pm index 9baca78a8625..dd40c302a9a9 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling/TestBuilder.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling/TestBuilder.pm @@ -1,6 +1,6 @@ package Test2::Manual::Tooling::TestBuilder; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Testing.pm b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Testing.pm index 0920c4703aae..3ffd6d6f162b 100644 --- a/cpan/Test-Simple/lib/Test2/Manual/Tooling/Testing.pm +++ b/cpan/Test-Simple/lib/Test2/Manual/Tooling/Testing.pm @@ -2,7 +2,7 @@ package Test2::Manual::Tooling::Testing; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Mock.pm b/cpan/Test-Simple/lib/Test2/Mock.pm index 69ee30337d59..b9cc08f7dadc 100644 --- a/cpan/Test-Simple/lib/Test2/Mock.pm +++ b/cpan/Test-Simple/lib/Test2/Mock.pm @@ -2,7 +2,7 @@ package Test2::Mock; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak confess/; our @CARP_NOT = (__PACKAGE__); diff --git a/cpan/Test-Simple/lib/Test2/Plugin.pm b/cpan/Test-Simple/lib/Test2/Plugin.pm index fe08ff4f2682..36f76b37575f 100644 --- a/cpan/Test-Simple/lib/Test2/Plugin.pm +++ b/cpan/Test-Simple/lib/Test2/Plugin.pm @@ -2,7 +2,7 @@ package Test2::Plugin; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Plugin/BailOnFail.pm b/cpan/Test-Simple/lib/Test2/Plugin/BailOnFail.pm index 78b30c8fa9ef..244d76f1ce12 100644 --- a/cpan/Test-Simple/lib/Test2/Plugin/BailOnFail.pm +++ b/cpan/Test-Simple/lib/Test2/Plugin/BailOnFail.pm @@ -2,7 +2,7 @@ package Test2::Plugin::BailOnFail; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::API qw/test2_add_callback_context_release/; diff --git a/cpan/Test-Simple/lib/Test2/Plugin/DieOnFail.pm b/cpan/Test-Simple/lib/Test2/Plugin/DieOnFail.pm index f80bb092f90a..44983abf4bbd 100644 --- a/cpan/Test-Simple/lib/Test2/Plugin/DieOnFail.pm +++ b/cpan/Test-Simple/lib/Test2/Plugin/DieOnFail.pm @@ -2,7 +2,7 @@ package Test2::Plugin::DieOnFail; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::API qw/test2_add_callback_context_release/; diff --git a/cpan/Test-Simple/lib/Test2/Plugin/ExitSummary.pm b/cpan/Test-Simple/lib/Test2/Plugin/ExitSummary.pm index 92606ead52a1..a35cef1483f8 100644 --- a/cpan/Test-Simple/lib/Test2/Plugin/ExitSummary.pm +++ b/cpan/Test-Simple/lib/Test2/Plugin/ExitSummary.pm @@ -2,7 +2,7 @@ package Test2::Plugin::ExitSummary; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::API qw/test2_add_callback_exit/; diff --git a/cpan/Test-Simple/lib/Test2/Plugin/SRand.pm b/cpan/Test-Simple/lib/Test2/Plugin/SRand.pm index 325a40db3aa7..d80b9eea5061 100644 --- a/cpan/Test-Simple/lib/Test2/Plugin/SRand.pm +++ b/cpan/Test-Simple/lib/Test2/Plugin/SRand.pm @@ -2,7 +2,7 @@ package Test2::Plugin::SRand; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/carp/; diff --git a/cpan/Test-Simple/lib/Test2/Plugin/Times.pm b/cpan/Test-Simple/lib/Test2/Plugin/Times.pm index faef4b93551c..a44691641f60 100644 --- a/cpan/Test-Simple/lib/Test2/Plugin/Times.pm +++ b/cpan/Test-Simple/lib/Test2/Plugin/Times.pm @@ -10,7 +10,7 @@ use Test2::API qw{ use Time::HiRes qw/time/; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; my $ADDED_HOOK = 0; my $START; diff --git a/cpan/Test-Simple/lib/Test2/Plugin/UTF8.pm b/cpan/Test-Simple/lib/Test2/Plugin/UTF8.pm index 9c381f4898c1..97520bfcdfe9 100644 --- a/cpan/Test-Simple/lib/Test2/Plugin/UTF8.pm +++ b/cpan/Test-Simple/lib/Test2/Plugin/UTF8.pm @@ -2,7 +2,7 @@ package Test2::Plugin::UTF8; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/Test2/Require.pm b/cpan/Test-Simple/lib/Test2/Require.pm index 5e2b0e65c9a7..2ebd9a56b765 100644 --- a/cpan/Test-Simple/lib/Test2/Require.pm +++ b/cpan/Test-Simple/lib/Test2/Require.pm @@ -2,7 +2,7 @@ package Test2::Require; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::API qw/context/; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/Test2/Require/AuthorTesting.pm b/cpan/Test-Simple/lib/Test2/Require/AuthorTesting.pm index edeb28940143..fdcab1374d92 100644 --- a/cpan/Test-Simple/lib/Test2/Require/AuthorTesting.pm +++ b/cpan/Test-Simple/lib/Test2/Require/AuthorTesting.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub skip { my $class = shift; diff --git a/cpan/Test-Simple/lib/Test2/Require/AutomatedTesting.pm b/cpan/Test-Simple/lib/Test2/Require/AutomatedTesting.pm index e209535b008a..7129173b9f03 100644 --- a/cpan/Test-Simple/lib/Test2/Require/AutomatedTesting.pm +++ b/cpan/Test-Simple/lib/Test2/Require/AutomatedTesting.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub skip { my $class = shift; diff --git a/cpan/Test-Simple/lib/Test2/Require/EnvVar.pm b/cpan/Test-Simple/lib/Test2/Require/EnvVar.pm index 53ab5dedfc4b..54b56d1d389d 100644 --- a/cpan/Test-Simple/lib/Test2/Require/EnvVar.pm +++ b/cpan/Test-Simple/lib/Test2/Require/EnvVar.pm @@ -5,7 +5,7 @@ use warnings; use Carp qw/confess/; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub skip { my $class = shift; diff --git a/cpan/Test-Simple/lib/Test2/Require/ExtendedTesting.pm b/cpan/Test-Simple/lib/Test2/Require/ExtendedTesting.pm index c1c9b8328d6e..22c21c7a1d58 100644 --- a/cpan/Test-Simple/lib/Test2/Require/ExtendedTesting.pm +++ b/cpan/Test-Simple/lib/Test2/Require/ExtendedTesting.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub skip { my $class = shift; diff --git a/cpan/Test-Simple/lib/Test2/Require/Fork.pm b/cpan/Test-Simple/lib/Test2/Require/Fork.pm index edfb0087fb51..eb29f72383e8 100644 --- a/cpan/Test-Simple/lib/Test2/Require/Fork.pm +++ b/cpan/Test-Simple/lib/Test2/Require/Fork.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util qw/CAN_FORK/; diff --git a/cpan/Test-Simple/lib/Test2/Require/Module.pm b/cpan/Test-Simple/lib/Test2/Require/Module.pm index 6b43892dd91c..82f375ce7b51 100644 --- a/cpan/Test-Simple/lib/Test2/Require/Module.pm +++ b/cpan/Test-Simple/lib/Test2/Require/Module.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util qw/pkg_to_file/; diff --git a/cpan/Test-Simple/lib/Test2/Require/NonInteractiveTesting.pm b/cpan/Test-Simple/lib/Test2/Require/NonInteractiveTesting.pm index 41f5e0010e55..f066c8083d40 100644 --- a/cpan/Test-Simple/lib/Test2/Require/NonInteractiveTesting.pm +++ b/cpan/Test-Simple/lib/Test2/Require/NonInteractiveTesting.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub skip { my $class = shift; diff --git a/cpan/Test-Simple/lib/Test2/Require/Perl.pm b/cpan/Test-Simple/lib/Test2/Require/Perl.pm index 0b2c1966e292..093674eaf469 100644 --- a/cpan/Test-Simple/lib/Test2/Require/Perl.pm +++ b/cpan/Test-Simple/lib/Test2/Require/Perl.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util qw/pkg_to_file/; use Scalar::Util qw/reftype/; diff --git a/cpan/Test-Simple/lib/Test2/Require/RealFork.pm b/cpan/Test-Simple/lib/Test2/Require/RealFork.pm index f082b3607135..16f76d471b14 100644 --- a/cpan/Test-Simple/lib/Test2/Require/RealFork.pm +++ b/cpan/Test-Simple/lib/Test2/Require/RealFork.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util qw/CAN_REALLY_FORK/; diff --git a/cpan/Test-Simple/lib/Test2/Require/ReleaseTesting.pm b/cpan/Test-Simple/lib/Test2/Require/ReleaseTesting.pm index 39f8f14da531..4d3b2c56386a 100644 --- a/cpan/Test-Simple/lib/Test2/Require/ReleaseTesting.pm +++ b/cpan/Test-Simple/lib/Test2/Require/ReleaseTesting.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub skip { my $class = shift; diff --git a/cpan/Test-Simple/lib/Test2/Require/Threads.pm b/cpan/Test-Simple/lib/Test2/Require/Threads.pm index 4c4d8b6bc722..cbf891391589 100644 --- a/cpan/Test-Simple/lib/Test2/Require/Threads.pm +++ b/cpan/Test-Simple/lib/Test2/Require/Threads.pm @@ -4,7 +4,7 @@ use warnings; use base 'Test2::Require'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util qw/CAN_THREAD/; diff --git a/cpan/Test-Simple/lib/Test2/Suite.pm b/cpan/Test-Simple/lib/Test2/Suite.pm index c70dc1ddebe8..3518322a4ffc 100644 --- a/cpan/Test-Simple/lib/Test2/Suite.pm +++ b/cpan/Test-Simple/lib/Test2/Suite.pm @@ -2,7 +2,7 @@ package Test2::Suite; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Todo.pm b/cpan/Test-Simple/lib/Test2/Todo.pm index 685460648a68..4aacc7520b8a 100644 --- a/cpan/Test-Simple/lib/Test2/Todo.pm +++ b/cpan/Test-Simple/lib/Test2/Todo.pm @@ -9,7 +9,7 @@ use Test2::API qw/test2_stack/; use overload '""' => \&reason, fallback => 1; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub init { my $self = shift; diff --git a/cpan/Test-Simple/lib/Test2/Tools.pm b/cpan/Test-Simple/lib/Test2/Tools.pm index b98c7cb98fda..dd8df3a73d8f 100644 --- a/cpan/Test-Simple/lib/Test2/Tools.pm +++ b/cpan/Test-Simple/lib/Test2/Tools.pm @@ -2,7 +2,7 @@ package Test2::Tools; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/Tools/AsyncSubtest.pm b/cpan/Test-Simple/lib/Test2/Tools/AsyncSubtest.pm index d85b51098033..24480a31027b 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/AsyncSubtest.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/AsyncSubtest.pm @@ -2,7 +2,7 @@ package Test2::Tools::AsyncSubtest; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::IPC; use Test2::AsyncSubtest; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Basic.pm b/cpan/Test-Simple/lib/Test2/Tools/Basic.pm index 96e2701bcec5..085da4b9d8f6 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Basic.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Basic.pm @@ -2,7 +2,7 @@ package Test2::Tools::Basic; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; use Test2::API qw/context/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Class.pm b/cpan/Test-Simple/lib/Test2/Tools/Class.pm index 3200f7604c68..526d9f869d71 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Class.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Class.pm @@ -2,7 +2,7 @@ package Test2::Tools::Class; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::API qw/context/; use Test2::Util::Ref qw/render_ref/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/ClassicCompare.pm b/cpan/Test-Simple/lib/Test2/Tools/ClassicCompare.pm index 7c1cf0ce954c..84aba882439d 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/ClassicCompare.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/ClassicCompare.pm @@ -2,7 +2,7 @@ package Test2::Tools::ClassicCompare; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; our @EXPORT = qw/is is_deeply isnt like unlike cmp_ok/; use base 'Exporter'; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Compare.pm b/cpan/Test-Simple/lib/Test2/Tools/Compare.pm index 2f555ef654df..94a6549f73ec 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Compare.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Compare.pm @@ -2,7 +2,7 @@ package Test2::Tools::Compare; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; use Scalar::Util qw/reftype/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Defer.pm b/cpan/Test-Simple/lib/Test2/Tools/Defer.pm index 93cebb5b7911..1aa06530135d 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Defer.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Defer.pm @@ -2,7 +2,7 @@ package Test2::Tools::Defer; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Encoding.pm b/cpan/Test-Simple/lib/Test2/Tools/Encoding.pm index 30291f208fed..1d04aff13c21 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Encoding.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Encoding.pm @@ -8,7 +8,7 @@ use Test2::API qw/test2_stack/; use base 'Exporter'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; our @EXPORT = qw/set_encoding/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Event.pm b/cpan/Test-Simple/lib/Test2/Tools/Event.pm index 983c32a486cc..c7a179be1272 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Event.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Event.pm @@ -2,7 +2,7 @@ package Test2::Tools::Event; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util qw/pkg_to_file/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Exception.pm b/cpan/Test-Simple/lib/Test2/Tools/Exception.pm index 7fd2fac8f637..00f9cf0bce04 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Exception.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Exception.pm @@ -2,7 +2,7 @@ package Test2::Tools::Exception; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/carp/; use Test2::API qw/context test2_add_pending_diag test2_clear_pending_diags/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Exports.pm b/cpan/Test-Simple/lib/Test2/Tools/Exports.pm index 935a7684a66f..35e51ef1adb1 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Exports.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Exports.pm @@ -2,7 +2,7 @@ package Test2::Tools::Exports; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak carp/; use Test2::API qw/context/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/GenTemp.pm b/cpan/Test-Simple/lib/Test2/Tools/GenTemp.pm index 531e761b54d7..638896fae6bb 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/GenTemp.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/GenTemp.pm @@ -3,7 +3,7 @@ package Test2::Tools::GenTemp; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use File::Temp qw/tempdir/; use File::Spec; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Grab.pm b/cpan/Test-Simple/lib/Test2/Tools/Grab.pm index 114ec61f08be..8050314e55c7 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Grab.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Grab.pm @@ -2,7 +2,7 @@ package Test2::Tools::Grab; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::Grabber; use Test2::EventFacet::Trace(); diff --git a/cpan/Test-Simple/lib/Test2/Tools/Mock.pm b/cpan/Test-Simple/lib/Test2/Tools/Mock.pm index a9fa3e8be3a3..25fba68764b3 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Mock.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Mock.pm @@ -11,7 +11,7 @@ use Test2::Mock(); use base 'Exporter'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; our @CARP_NOT = (__PACKAGE__, 'Test2::Mock'); our @EXPORT = qw/mock mocked/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Ref.pm b/cpan/Test-Simple/lib/Test2/Tools/Ref.pm index a928472ae4c7..b516e47d3375 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Ref.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Ref.pm @@ -2,7 +2,7 @@ package Test2::Tools::Ref; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Scalar::Util qw/reftype refaddr/; use Test2::API qw/context/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Refcount.pm b/cpan/Test-Simple/lib/Test2/Tools/Refcount.pm index b4ace71038df..f2e0d68b59fb 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Refcount.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Refcount.pm @@ -13,7 +13,7 @@ use Test2::API qw(context release); use Scalar::Util qw( weaken refaddr ); use B qw( svref_2object ); -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; our @EXPORT = qw( is_refcount diff --git a/cpan/Test-Simple/lib/Test2/Tools/Spec.pm b/cpan/Test-Simple/lib/Test2/Tools/Spec.pm index 077f415f3243..8a7d419a6e65 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Spec.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Spec.pm @@ -2,7 +2,7 @@ package Test2::Tools::Spec; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; use Test2::Workflow qw/parse_args build current_build root_build init_root build_stack/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Subtest.pm b/cpan/Test-Simple/lib/Test2/Tools/Subtest.pm index f571f446aa16..652741d5da6c 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Subtest.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Subtest.pm @@ -2,7 +2,7 @@ package Test2::Tools::Subtest; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::API qw/context run_subtest/; use Test2::Util qw/try/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Target.pm b/cpan/Test-Simple/lib/Test2/Tools/Target.pm index f090c21c00c4..6419f9e1a556 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Target.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Target.pm @@ -2,7 +2,7 @@ package Test2::Tools::Target; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Tester.pm b/cpan/Test-Simple/lib/Test2/Tools/Tester.pm index 90cc5fce38d3..8e78ef9ebdf0 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Tester.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Tester.pm @@ -2,7 +2,7 @@ package Test2::Tools::Tester; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; use Test2::Util::Ref qw/rtype/; diff --git a/cpan/Test-Simple/lib/Test2/Tools/Tiny.pm b/cpan/Test-Simple/lib/Test2/Tools/Tiny.pm index 1eea5dcef6fa..20625ceac2ec 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Tiny.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Tiny.pm @@ -10,7 +10,7 @@ use Test2::API qw/context run_subtest test2_stack/; use Test2::Hub::Interceptor(); use Test2::Hub::Interceptor::Terminator(); -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; BEGIN { require Exporter; our @ISA = qw(Exporter) } our @EXPORT = qw{ diff --git a/cpan/Test-Simple/lib/Test2/Tools/Warnings.pm b/cpan/Test-Simple/lib/Test2/Tools/Warnings.pm index 3073d421df2a..e71729249a83 100644 --- a/cpan/Test-Simple/lib/Test2/Tools/Warnings.pm +++ b/cpan/Test-Simple/lib/Test2/Tools/Warnings.pm @@ -2,7 +2,7 @@ package Test2::Tools::Warnings; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::API qw/context test2_add_pending_diag/; diff --git a/cpan/Test-Simple/lib/Test2/Util.pm b/cpan/Test-Simple/lib/Test2/Util.pm index e4fc0925fd94..f429af520c3c 100644 --- a/cpan/Test-Simple/lib/Test2/Util.pm +++ b/cpan/Test-Simple/lib/Test2/Util.pm @@ -2,7 +2,7 @@ package Test2::Util; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use POSIX(); use Config qw/%Config/; diff --git a/cpan/Test-Simple/lib/Test2/Util/ExternalMeta.pm b/cpan/Test-Simple/lib/Test2/Util/ExternalMeta.pm index 7726f1bd930a..ebfc96b6ca9e 100644 --- a/cpan/Test-Simple/lib/Test2/Util/ExternalMeta.pm +++ b/cpan/Test-Simple/lib/Test2/Util/ExternalMeta.pm @@ -2,7 +2,7 @@ package Test2::Util::ExternalMeta; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/Test2/Util/Facets2Legacy.pm b/cpan/Test-Simple/lib/Test2/Util/Facets2Legacy.pm index e8d77b6ebd25..6a78d9b4f091 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Facets2Legacy.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Facets2Legacy.pm @@ -2,7 +2,7 @@ package Test2::Util::Facets2Legacy; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak confess/; use Scalar::Util qw/blessed/; diff --git a/cpan/Test-Simple/lib/Test2/Util/Grabber.pm b/cpan/Test-Simple/lib/Test2/Util/Grabber.pm index 24766379e9d9..477c81da3059 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Grabber.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Grabber.pm @@ -2,7 +2,7 @@ package Test2::Util::Grabber; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Hub::Interceptor(); use Test2::EventFacet::Trace(); diff --git a/cpan/Test-Simple/lib/Test2/Util/Guard.pm b/cpan/Test-Simple/lib/Test2/Util/Guard.pm index 3c0cdb832a5b..8363343da878 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Guard.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Guard.pm @@ -5,7 +5,7 @@ use warnings; use Carp qw(confess); -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; sub new { confess "Can't create a Test2::Util::Guard in void context" unless (defined wantarray); diff --git a/cpan/Test-Simple/lib/Test2/Util/HashBase.pm b/cpan/Test-Simple/lib/Test2/Util/HashBase.pm index 92e6104cdb81..e05c78dffa4e 100644 --- a/cpan/Test-Simple/lib/Test2/Util/HashBase.pm +++ b/cpan/Test-Simple/lib/Test2/Util/HashBase.pm @@ -2,7 +2,7 @@ package Test2::Util::HashBase; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; ################################################################# # # diff --git a/cpan/Test-Simple/lib/Test2/Util/Importer.pm b/cpan/Test-Simple/lib/Test2/Util/Importer.pm index e6849e259bd6..67f9cbf29e88 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Importer.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Importer.pm @@ -2,7 +2,7 @@ package Test2::Util::Importer; use strict; no strict 'refs'; use warnings; no warnings 'once'; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; my %SIG_TO_SLOT = ( '&' => 'CODE', diff --git a/cpan/Test-Simple/lib/Test2/Util/Ref.pm b/cpan/Test-Simple/lib/Test2/Util/Ref.pm index 776cfca2ebda..9066fb2f8364 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Ref.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Ref.pm @@ -2,7 +2,7 @@ package Test2::Util::Ref; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Scalar::Util qw/reftype blessed refaddr/; diff --git a/cpan/Test-Simple/lib/Test2/Util/Stash.pm b/cpan/Test-Simple/lib/Test2/Util/Stash.pm index fe7d5aecd1f6..0e51e67ef336 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Stash.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Stash.pm @@ -2,7 +2,7 @@ package Test2::Util::Stash; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; use B; diff --git a/cpan/Test-Simple/lib/Test2/Util/Sub.pm b/cpan/Test-Simple/lib/Test2/Util/Sub.pm index 474ef5acc6ef..de17579f9fb2 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Sub.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Sub.pm @@ -2,7 +2,7 @@ package Test2::Util::Sub; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak carp/; use B(); diff --git a/cpan/Test-Simple/lib/Test2/Util/Table.pm b/cpan/Test-Simple/lib/Test2/Util/Table.pm index fec2dbda04c9..c0b75272b3fd 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Table.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Table.pm @@ -2,7 +2,7 @@ package Test2::Util::Table; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use base 'Term::Table'; diff --git a/cpan/Test-Simple/lib/Test2/Util/Table/Cell.pm b/cpan/Test-Simple/lib/Test2/Util/Table/Cell.pm index 41adb0a86128..1d36b00eacf0 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Table/Cell.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Table/Cell.pm @@ -2,7 +2,7 @@ package Test2::Util::Table::Cell; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use base 'Term::Table::Cell'; diff --git a/cpan/Test-Simple/lib/Test2/Util/Table/LineBreak.pm b/cpan/Test-Simple/lib/Test2/Util/Table/LineBreak.pm index 8cf87a721d45..5cdb54315fb3 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Table/LineBreak.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Table/LineBreak.pm @@ -2,7 +2,7 @@ package Test2::Util::Table::LineBreak; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use base 'Term::Table::LineBreak'; diff --git a/cpan/Test-Simple/lib/Test2/Util/Term.pm b/cpan/Test-Simple/lib/Test2/Util/Term.pm index 22d306696379..9aa470305f34 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Term.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Term.pm @@ -4,7 +4,7 @@ use warnings; use Term::Table::Util qw/term_size USE_GCS USE_TERM_READKEY uni_length/; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::Importer 'Test2::Util::Importer' => 'import'; our @EXPORT_OK = qw/term_size USE_GCS USE_TERM_READKEY uni_length/; diff --git a/cpan/Test-Simple/lib/Test2/Util/Times.pm b/cpan/Test-Simple/lib/Test2/Util/Times.pm index 60c8ce365779..b5d724ed1ba9 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Times.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Times.pm @@ -4,7 +4,7 @@ use warnings; use List::Util qw/sum/; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; our @EXPORT_OK = qw/render_bench render_duration/; use base 'Exporter'; diff --git a/cpan/Test-Simple/lib/Test2/Util/Trace.pm b/cpan/Test-Simple/lib/Test2/Util/Trace.pm index 8ef46cfd3c43..c312a84b2f49 100644 --- a/cpan/Test-Simple/lib/Test2/Util/Trace.pm +++ b/cpan/Test-Simple/lib/Test2/Util/Trace.pm @@ -6,7 +6,7 @@ use strict; our @ISA = ('Test2::EventFacet::Trace'); -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; 1; diff --git a/cpan/Test-Simple/lib/Test2/V0.pm b/cpan/Test-Simple/lib/Test2/V0.pm index 5886c08f3690..236ac19e09e3 100644 --- a/cpan/Test-Simple/lib/Test2/V0.pm +++ b/cpan/Test-Simple/lib/Test2/V0.pm @@ -4,7 +4,7 @@ use warnings; use Test2::Util::Importer; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; @@ -287,6 +287,10 @@ See L. This plugin has no configuration. +=head1 ENVIRONMENT VARIABLES + +See L for a list of meaningul environment variables. + =head1 API FUNCTIONS See L for these diff --git a/cpan/Test-Simple/lib/Test2/Workflow.pm b/cpan/Test-Simple/lib/Test2/Workflow.pm index 64200cbea7ac..e9fbc55c01fa 100644 --- a/cpan/Test-Simple/lib/Test2/Workflow.pm +++ b/cpan/Test-Simple/lib/Test2/Workflow.pm @@ -2,7 +2,7 @@ package Test2::Workflow; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; our @EXPORT_OK = qw/parse_args current_build build root_build init_root build_stack/; use base 'Exporter'; diff --git a/cpan/Test-Simple/lib/Test2/Workflow/BlockBase.pm b/cpan/Test-Simple/lib/Test2/Workflow/BlockBase.pm index 48b8bb8e7afc..de1d06999b44 100644 --- a/cpan/Test-Simple/lib/Test2/Workflow/BlockBase.pm +++ b/cpan/Test-Simple/lib/Test2/Workflow/BlockBase.pm @@ -2,7 +2,7 @@ package Test2::Workflow::BlockBase; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Util::HashBase qw/code frame _info _lines/; use Test2::Util::Sub qw/sub_info/; diff --git a/cpan/Test-Simple/lib/Test2/Workflow/Build.pm b/cpan/Test-Simple/lib/Test2/Workflow/Build.pm index e18e67fa9894..ab2e455f9db8 100644 --- a/cpan/Test-Simple/lib/Test2/Workflow/Build.pm +++ b/cpan/Test-Simple/lib/Test2/Workflow/Build.pm @@ -2,7 +2,7 @@ package Test2::Workflow::Build; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::Workflow::Task::Group; diff --git a/cpan/Test-Simple/lib/Test2/Workflow/Runner.pm b/cpan/Test-Simple/lib/Test2/Workflow/Runner.pm index 261402894f92..f8e904b42ece 100644 --- a/cpan/Test-Simple/lib/Test2/Workflow/Runner.pm +++ b/cpan/Test-Simple/lib/Test2/Workflow/Runner.pm @@ -2,7 +2,7 @@ package Test2::Workflow::Runner; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::API(); use Test2::Todo(); diff --git a/cpan/Test-Simple/lib/Test2/Workflow/Task.pm b/cpan/Test-Simple/lib/Test2/Workflow/Task.pm index 3fa15169fb8a..54d9b621d256 100644 --- a/cpan/Test-Simple/lib/Test2/Workflow/Task.pm +++ b/cpan/Test-Simple/lib/Test2/Workflow/Task.pm @@ -2,7 +2,7 @@ package Test2::Workflow::Task; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Test2::API(); use Test2::Event::Exception(); diff --git a/cpan/Test-Simple/lib/Test2/Workflow/Task/Action.pm b/cpan/Test-Simple/lib/Test2/Workflow/Task/Action.pm index c778b2f9c990..7b929a0cdee1 100644 --- a/cpan/Test-Simple/lib/Test2/Workflow/Task/Action.pm +++ b/cpan/Test-Simple/lib/Test2/Workflow/Task/Action.pm @@ -2,7 +2,7 @@ package Test2::Workflow::Task::Action; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use base 'Test2::Workflow::Task'; use Test2::Util::HashBase qw/around/; diff --git a/cpan/Test-Simple/lib/Test2/Workflow/Task/Group.pm b/cpan/Test-Simple/lib/Test2/Workflow/Task/Group.pm index 320d84993c56..23960aaab5ea 100644 --- a/cpan/Test-Simple/lib/Test2/Workflow/Task/Group.pm +++ b/cpan/Test-Simple/lib/Test2/Workflow/Task/Group.pm @@ -2,7 +2,7 @@ package Test2::Workflow::Task::Group; use strict; use warnings; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use Carp qw/croak/; diff --git a/cpan/Test-Simple/lib/ok.pm b/cpan/Test-Simple/lib/ok.pm index b0a2ccfd28df..dd177095775c 100644 --- a/cpan/Test-Simple/lib/ok.pm +++ b/cpan/Test-Simple/lib/ok.pm @@ -1,5 +1,5 @@ package ok; -our $VERSION = '1.302206'; +our $VERSION = '1.302207'; use strict; use Test::More (); diff --git a/cpan/Test-Simple/t/regression/247_check_ref_bool.t b/cpan/Test-Simple/t/regression/247_check_ref_bool.t index b2689c9bc011..b3cef1b8b5e7 100644 --- a/cpan/Test-Simple/t/regression/247_check_ref_bool.t +++ b/cpan/Test-Simple/t/regression/247_check_ref_bool.t @@ -1,7 +1,7 @@ use Test2::V0; BEGIN { - skip_all "Need JSON::MaybeXS: $@" unless eval { + skip_all "Test needs JSON::MaybeXS" unless eval { require JSON::MaybeXS; JSON::MaybeXS->import(qw/decode_json/); 1;