Skip to content

Commit d7e5e27

Browse files
Chad Granumjkeenan
authored andcommitted
cpan/Test-Simple - Update to version 1.302207
1.302207 2024-12-27 18:13:18-08:00 America/Los_Angeles - Fix debugging info when JSON::MaybeXS is missing (Thanks James E Keenan) - Fix typos (Thanks sobrado8086) - Add TEST2_ENABLE_PLUGINS env var - Add Test2::Env docs
1 parent a08b8bd commit d7e5e27

File tree

198 files changed

+379
-200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+379
-200
lines changed

MANIFEST

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2586,6 +2586,7 @@ cpan/Test-Simple/lib/Test2/Compare/Set.pm Test-Simple
25862586
cpan/Test-Simple/lib/Test2/Compare/String.pm Test-Simple
25872587
cpan/Test-Simple/lib/Test2/Compare/Undef.pm Test-Simple
25882588
cpan/Test-Simple/lib/Test2/Compare/Wildcard.pm Test-Simple
2589+
cpan/Test-Simple/lib/Test2/Env.pm Test-Simple
25892590
cpan/Test-Simple/lib/Test2/Event.pm Module related to Test::Simple
25902591
cpan/Test-Simple/lib/Test2/Event/Bail.pm Module related to Test::Simple
25912592
cpan/Test-Simple/lib/Test2/Event/Diag.pm Module related to Test::Simple

Porting/Maintainers.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1110,8 +1110,8 @@ package Maintainers;
11101110
},
11111111

11121112
'Test::Simple' => {
1113-
'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302206.tar.gz',
1114-
'SYNCINFO' => 'jkeenan on Mon Dec 23 16:57:46 2024',
1113+
'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302207.tar.gz',
1114+
'SYNCINFO' => 'jkeenan on Sun Jan 5 06:26:14 2025',
11151115
'FILES' => q[cpan/Test-Simple],
11161116
'EXCLUDED' => [
11171117
qr{^examples/},

cpan/Test-Simple/lib/Test/Builder.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.006;
44
use strict;
55
use warnings;
66

7-
our $VERSION = '1.302206';
7+
our $VERSION = '1.302207';
88

99
use Scalar::Util qw/blessed reftype weaken/;
1010

cpan/Test-Simple/lib/Test/Builder/Formatter.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Test::Builder::Formatter;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '1.302206';
5+
our $VERSION = '1.302207';
66

77
BEGIN { require Test2::Formatter::TAP; our @ISA = qw(Test2::Formatter::TAP) }
88

cpan/Test-Simple/lib/Test/Builder/Module.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use Test::Builder;
77
require Exporter;
88
our @ISA = qw(Exporter);
99

10-
our $VERSION = '1.302206';
10+
our $VERSION = '1.302207';
1111

1212

1313
=head1 NAME

cpan/Test-Simple/lib/Test/Builder/Tester.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package Test::Builder::Tester;
22

33
use strict;
4-
our $VERSION = '1.302206';
4+
our $VERSION = '1.302207';
55

66
use Test::Builder;
77
use Symbol;

cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package Test::Builder::Tester::Color;
22

33
use strict;
4-
our $VERSION = '1.302206';
4+
our $VERSION = '1.302207';
55

66
require Test::Builder::Tester;
77

cpan/Test-Simple/lib/Test/Builder/TodoDiag.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Test::Builder::TodoDiag;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '1.302206';
5+
our $VERSION = '1.302207';
66

77
BEGIN { require Test2::Event::Diag; our @ISA = qw(Test2::Event::Diag) }
88

cpan/Test-Simple/lib/Test/More.pm

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ sub _carp {
1717
return warn @_, " at $file line $line\n";
1818
}
1919

20-
our $VERSION = '1.302206';
20+
our $VERSION = '1.302207';
2121

2222
use Test::Builder::Module;
2323
our @ISA = qw(Test::Builder::Module);
@@ -395,7 +395,7 @@ different from some other value:
395395
isnt $obj, $clone, "clone() produces a different object";
396396
397397
Historically we supported an C<isn't()> function as an alias of
398-
C<isnt()>, however in Perl 5.37.9 support for the use of aprostrophe as
398+
C<isnt()>, however in Perl 5.37.9 support for the use of apostrophe as
399399
a package separator was deprecated and by Perl 5.42.0 support for it
400400
will have been removed completely. Accordingly use of C<isn't()> is also
401401
deprecated, and will produce warnings when used unless 'deprecated'
@@ -2002,6 +2002,10 @@ comes from.
20022002
20032003
L<Test::Most> Most commonly needed test functions and features.
20042004
2005+
=head1 ENVIRONMENT VARIABLES
2006+
2007+
See L<Test2::Env> for a list of meaningul environment variables.
2008+
20052009
=head1 AUTHORS
20062010
20072011
Michael G Schwern E<lt>schwern@pobox.comE<gt> with much inspiration

cpan/Test-Simple/lib/Test/Simple.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.006;
44

55
use strict;
66

7-
our $VERSION = '1.302206';
7+
our $VERSION = '1.302207';
88

99
use Test::Builder::Module;
1010
our @ISA = qw(Test::Builder::Module);

0 commit comments

Comments
 (0)