Skip to content

Commit 10adbc0

Browse files
Chad Granumjkeenan
authored andcommitted
cpan/Test-Simple - Update to version 1.302219
1.302219 2025-12-08 16:09:01-08:00 America/Los_Angeles - Fix downstream test not to install Test2::Suite - Fix documentation mistakes Committer: Changes to Makefile.SH.
1 parent 55c5b50 commit 10adbc0

File tree

207 files changed

+2331
-251
lines changed

Some content is hidden

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

207 files changed

+2331
-251
lines changed

MANIFEST

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2624,6 +2624,7 @@ cpan/Test-Simple/lib/Test2/EventFacet/Render.pm Module related to Test::Simp
26242624
cpan/Test-Simple/lib/Test2/EventFacet/Trace.pm Module related to Test::Simple
26252625
cpan/Test-Simple/lib/Test2/Formatter.pm Module related to Test::Simple
26262626
cpan/Test-Simple/lib/Test2/Formatter/TAP.pm Module related to Test::Simple
2627+
cpan/Test-Simple/lib/Test2/Handle.pm Test-Simple
26272628
cpan/Test-Simple/lib/Test2/Hub.pm Module related to Test::Simple
26282629
cpan/Test-Simple/lib/Test2/Hub/Interceptor.pm Module related to Test::Simple
26292630
cpan/Test-Simple/lib/Test2/Hub/Interceptor/Terminator.pm Module related to Test::Simple
@@ -2721,6 +2722,9 @@ cpan/Test-Simple/lib/Test2/Util/Term.pm Test-Simple
27212722
cpan/Test-Simple/lib/Test2/Util/Times.pm Test-Simple
27222723
cpan/Test-Simple/lib/Test2/Util/Trace.pm Module related to Test::Simple
27232724
cpan/Test-Simple/lib/Test2/V0.pm Test-Simple
2725+
cpan/Test-Simple/lib/Test2/V1.pm Test-Simple
2726+
cpan/Test-Simple/lib/Test2/V1/Base.pm Test-Simple
2727+
cpan/Test-Simple/lib/Test2/V1/Handle.pm Test-Simple
27242728
cpan/Test-Simple/lib/Test2/Workflow.pm Test-Simple
27252729
cpan/Test-Simple/lib/Test2/Workflow/BlockBase.pm Test-Simple
27262730
cpan/Test-Simple/lib/Test2/Workflow/Build.pm Test-Simple
@@ -2943,6 +2947,7 @@ cpan/Test-Simple/t/modules/Compare/Set.t Test-Simple
29432947
cpan/Test-Simple/t/modules/Compare/String.t Test-Simple
29442948
cpan/Test-Simple/t/modules/Compare/Undef.t Test-Simple
29452949
cpan/Test-Simple/t/modules/Compare/Wildcard.t Test-Simple
2950+
cpan/Test-Simple/t/modules/Handle.t Test-Simple
29462951
cpan/Test-Simple/t/modules/Mock.t Test-Simple
29472952
cpan/Test-Simple/t/modules/Plugin.t Test-Simple
29482953
cpan/Test-Simple/t/modules/Plugin/BailOnFail.t Test-Simple
@@ -2999,6 +3004,9 @@ cpan/Test-Simple/t/modules/Util/Table/Cell.t Test-Simple
29993004
cpan/Test-Simple/t/modules/Util/Table/LineBreak.t Test-Simple
30003005
cpan/Test-Simple/t/modules/Util/Times.t Test-Simple
30013006
cpan/Test-Simple/t/modules/V0.t Test-Simple
3007+
cpan/Test-Simple/t/modules/V1.t Test-Simple
3008+
cpan/Test-Simple/t/modules/V1/Base.t Test-Simple
3009+
cpan/Test-Simple/t/modules/V1/Handle.t Test-Simple
30023010
cpan/Test-Simple/t/modules/Workflow.t Test-Simple
30033011
cpan/Test-Simple/t/modules/Workflow/BlockBase.t Test-Simple
30043012
cpan/Test-Simple/t/modules/Workflow/Build.t Test-Simple

Makefile.SH

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1430,8 +1430,8 @@ _cleaner2:
14301430
-rmdir lib/Win32API lib/VMS lib/Unicode/Collate/Locale
14311431
-rmdir lib/Unicode/Collate/CJK lib/Unicode/Collate lib/Tie/Hash
14321432
-rmdir lib/Thread lib/Text lib/Test2/Workflow/Task lib/Test2/Workflow
1433-
-rmdir lib/Test2/Util/Table lib/Test2/Util lib/Test2/Tools
1434-
-rmdir lib/Test2/Require lib/Test2/Plugin
1433+
-rmdir lib/Test2/V1 lib/Test2/Util/Table lib/Test2/Util
1434+
-rmdir lib/Test2/Tools lib/Test2/Require lib/Test2/Plugin
14351435
-rmdir lib/Test2/Manual/Tooling/Plugin lib/Test2/Manual/Tooling
14361436
-rmdir lib/Test2/Manual/Testing lib/Test2/Manual/Anatomy
14371437
-rmdir lib/Test2/Manual lib/Test2/IPC/Driver lib/Test2/IPC

Porting/Maintainers.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1121,8 +1121,8 @@ package Maintainers;
11211121
},
11221122

11231123
'Test::Simple' => {
1124-
'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302216.tar.gz',
1125-
'SYNCINFO' => 'tib on Mon Nov 17 11:43:13 2025',
1124+
'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302219.tar.gz',
1125+
'SYNCINFO' => 'jkeenan on Sat Dec 13 21:08:23 2025',
11261126
'FILES' => q[cpan/Test-Simple],
11271127
'EXCLUDED' => [
11281128
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.302216';
7+
our $VERSION = '1.302219';
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.302216';
5+
our $VERSION = '1.302219';
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.302216';
10+
our $VERSION = '1.302219';
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.302216';
4+
our $VERSION = '1.302219';
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.302216';
4+
our $VERSION = '1.302219';
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.302216';
5+
our $VERSION = '1.302219';
66

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

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

Lines changed: 1 addition & 1 deletion
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.302216';
20+
our $VERSION = '1.302219';
2121

2222
use Test::Builder::Module;
2323
our @ISA = qw(Test::Builder::Module);

0 commit comments

Comments
 (0)