Skip to content

Commit

Permalink
cpan/Test-Simple - Update to version 1.302199
Browse files Browse the repository at this point in the history
1.302199  2024-04-25 15:05:00+01:00 Europe/Lisbon

    - Minor fixes
  • Loading branch information
leonerd committed Apr 27, 2024
1 parent 7bca205 commit cf08fff
Show file tree
Hide file tree
Showing 84 changed files with 222 additions and 222 deletions.
3 changes: 2 additions & 1 deletion Porting/Maintainers.pl
Expand Up @@ -1125,7 +1125,8 @@ package Maintainers;
},

'Test::Simple' => {
'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302198.tar.gz',
'DISTRIBUTION' => 'EXODIST/Test-Simple-1.302199.tar.gz',
'SYNCINFO' => 'LeoNerd on Sat Apr 27 10:20:58 2024',
'SYNCINFO' => 'jkeenan on Fri Dec 1 07:01:54 2023',
'FILES' => q[cpan/Test-Simple],
'EXCLUDED' => [
Expand Down
4 changes: 2 additions & 2 deletions cpan/Test-Simple/lib/Test/Builder.pm
Expand Up @@ -4,7 +4,7 @@ use 5.006;
use strict;
use warnings;

our $VERSION = '1.302198';
our $VERSION = '1.302199';

BEGIN {
if( $] < 5.008 ) {
Expand Down Expand Up @@ -2647,4 +2647,4 @@ Copyright 2002-2008 by chromatic E<lt>chromatic@wgz.orgE<gt> and
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://www.perl.com/perl/misc/Artistic.html>
See L<https://dev.perl.org/licenses/>
6 changes: 3 additions & 3 deletions cpan/Test-Simple/lib/Test/Builder/Formatter.pm
Expand Up @@ -2,7 +2,7 @@ package Test::Builder::Formatter;
use strict;
use warnings;

our $VERSION = '1.302198';
our $VERSION = '1.302199';

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

Expand Down Expand Up @@ -77,7 +77,7 @@ This is what takes events and turns them into TAP.
=head1 SOURCE
The source code repository for Test2 can be found at
F<http://github.com/Test-More/test-more/>.
L<https://github.com/Test-More/test-more/>.
=head1 MAINTAINERS
Expand All @@ -102,6 +102,6 @@ Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://dev.perl.org/licenses/>
See L<https://dev.perl.org/licenses/>
=cut
2 changes: 1 addition & 1 deletion cpan/Test-Simple/lib/Test/Builder/Module.pm
Expand Up @@ -7,7 +7,7 @@ use Test::Builder;
require Exporter;
our @ISA = qw(Exporter);

our $VERSION = '1.302198';
our $VERSION = '1.302199';


=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion cpan/Test-Simple/lib/Test/Builder/Tester.pm
@@ -1,7 +1,7 @@
package Test::Builder::Tester;

use strict;
our $VERSION = '1.302198';
our $VERSION = '1.302199';

use Test::Builder;
use Symbol;
Expand Down
2 changes: 1 addition & 1 deletion cpan/Test-Simple/lib/Test/Builder/Tester/Color.pm
@@ -1,7 +1,7 @@
package Test::Builder::Tester::Color;

use strict;
our $VERSION = '1.302198';
our $VERSION = '1.302199';

require Test::Builder::Tester;

Expand Down
6 changes: 3 additions & 3 deletions cpan/Test-Simple/lib/Test/Builder/TodoDiag.pm
Expand Up @@ -2,7 +2,7 @@ package Test::Builder::TodoDiag;
use strict;
use warnings;

our $VERSION = '1.302198';
our $VERSION = '1.302199';

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

Expand Down Expand Up @@ -38,7 +38,7 @@ You do not need to use this directly.
=head1 SOURCE
The source code repository for Test2 can be found at
F<http://github.com/Test-More/test-more/>.
L<https://github.com/Test-More/test-more/>.
=head1 MAINTAINERS
Expand All @@ -63,6 +63,6 @@ Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://dev.perl.org/licenses/>
See L<https://dev.perl.org/licenses/>
=cut
8 changes: 4 additions & 4 deletions cpan/Test-Simple/lib/Test/More.pm
Expand Up @@ -17,7 +17,7 @@ sub _carp {
return warn @_, " at $file line $line\n";
}

our $VERSION = '1.302198';
our $VERSION = '1.302199';

use Test::Builder::Module;
our @ISA = qw(Test::Builder::Module);
Expand Down Expand Up @@ -2020,13 +2020,13 @@ the perl-qa gang.
=head1 BUGS
See F<https://github.com/Test-More/test-more/issues> to report and view bugs.
See L<https://github.com/Test-More/test-more/issues> to report and view bugs.
=head1 SOURCE
The source code repository for Test::More can be found at
F<http://github.com/Test-More/test-more/>.
L<https://github.com/Test-More/test-more/>.
=head1 COPYRIGHT
Expand All @@ -2036,7 +2036,7 @@ Copyright 2001-2008 by Michael G Schwern E<lt>schwern@pobox.comE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://www.perl.com/perl/misc/Artistic.html>
See L<https://dev.perl.org/licenses/>
=cut

Expand Down
4 changes: 2 additions & 2 deletions cpan/Test-Simple/lib/Test/Simple.pm
Expand Up @@ -4,7 +4,7 @@ use 5.006;

use strict;

our $VERSION = '1.302198';
our $VERSION = '1.302199';

use Test::Builder::Module;
our @ISA = qw(Test::Builder::Module);
Expand Down Expand Up @@ -213,7 +213,7 @@ Copyright 2001-2008 by Michael G Schwern E<lt>schwern@pobox.comE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://www.perl.com/perl/misc/Artistic.html>
See L<https://dev.perl.org/licenses/>
=cut

Expand Down
4 changes: 2 additions & 2 deletions cpan/Test-Simple/lib/Test/Tester.pm
Expand Up @@ -18,7 +18,7 @@ require Exporter;

use vars qw( @ISA @EXPORT );

our $VERSION = '1.302198';
our $VERSION = '1.302199';

@EXPORT = qw( run_tests check_tests check_test cmp_results show_space );
@ISA = qw( Exporter );
Expand Down Expand Up @@ -690,6 +690,6 @@ Schwern <schwern@pobox.com>.
Under the same license as Perl itself
See http://www.perl.com/perl/misc/Artistic.html
See L<https://dev.perl.org/licenses/>
=cut
4 changes: 2 additions & 2 deletions cpan/Test-Simple/lib/Test/Tester/Capture.pm
Expand Up @@ -2,7 +2,7 @@ use strict;

package Test::Tester::Capture;

our $VERSION = '1.302198';
our $VERSION = '1.302199';


use Test::Builder;
Expand Down Expand Up @@ -236,6 +236,6 @@ chunks removed by Fergal Daly <fergal@esatclear.ie>.
Under the same license as Perl itself
See http://www.perl.com/perl/misc/Artistic.html
See L<https://dev.perl.org/licenses/>
=cut
4 changes: 2 additions & 2 deletions cpan/Test-Simple/lib/Test/Tester/CaptureRunner.pm
Expand Up @@ -3,7 +3,7 @@ use strict;

package Test::Tester::CaptureRunner;

our $VERSION = '1.302198';
our $VERSION = '1.302199';


use Test::Tester::Capture;
Expand Down Expand Up @@ -74,6 +74,6 @@ Copyright 2003 by Fergal Daly <fergal@esatclear.ie>.
Under the same license as Perl itself
See http://www.perl.com/perl/misc/Artistic.html
See L<https://dev.perl.org/licenses/>
=cut
2 changes: 1 addition & 1 deletion cpan/Test-Simple/lib/Test/Tester/Delegate.pm
Expand Up @@ -3,7 +3,7 @@ use warnings;

package Test::Tester::Delegate;

our $VERSION = '1.302198';
our $VERSION = '1.302199';

use Scalar::Util();

Expand Down
6 changes: 3 additions & 3 deletions cpan/Test-Simple/lib/Test/use/ok.pm
@@ -1,7 +1,7 @@
package Test::use::ok;
use 5.005;

our $VERSION = '1.302198';
our $VERSION = '1.302199';


__END__
Expand Down Expand Up @@ -55,10 +55,10 @@ L<Test::More>
=head1 CC0 1.0 Universal
To the extent possible under law, 唐鳳 has waived all copyright and related
or neighboring rights to L<Test-use-ok>.
or neighboring rights to L<Test::use::ok>.
This work is published from Taiwan.
L<http://creativecommons.org/publicdomain/zero/1.0>
L<https://creativecommons.org/publicdomain/zero/1.0/>
=cut
6 changes: 3 additions & 3 deletions cpan/Test-Simple/lib/Test2.pm
Expand Up @@ -2,7 +2,7 @@ package Test2;
use strict;
use warnings;

our $VERSION = '1.302198';
our $VERSION = '1.302199';


1;
Expand Down Expand Up @@ -183,7 +183,7 @@ emailing Chad Granum E<lt>exodist@cpan.orgE<gt>.
=head1 SOURCE
The source code repository for Test2 can be found at
F<http://github.com/Test-More/test-more/>.
L<https://github.com/Test-More/test-more/>.
=head1 MAINTAINERS
Expand All @@ -208,6 +208,6 @@ Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://dev.perl.org/licenses/>
See L<https://dev.perl.org/licenses/>
=cut
4 changes: 2 additions & 2 deletions cpan/Test-Simple/lib/Test2/API.pm
Expand Up @@ -10,7 +10,7 @@ BEGIN {
$ENV{TEST2_ACTIVE} = 1;
}

our $VERSION = '1.302198';
our $VERSION = '1.302199';


my $INST;
Expand Down Expand Up @@ -1360,7 +1360,7 @@ when testing is done.
Disable IPC.
=item $bool = test2_ipc_diabled
=item $bool = test2_ipc_disabled
Check if IPC is disabled.
Expand Down
8 changes: 4 additions & 4 deletions cpan/Test-Simple/lib/Test2/API/Breakage.pm
Expand Up @@ -2,7 +2,7 @@ package Test2::API::Breakage;
use strict;
use warnings;

our $VERSION = '1.302198';
our $VERSION = '1.302199';


use Test2::Util qw/pkg_to_file/;
Expand Down Expand Up @@ -75,7 +75,7 @@ sub report {
next if eval { $mod->VERSION($want); 1 };
my $error = $@;
chomp $error;
push @warn => " * Module '$mod' is outdated, we recommed updating above $want. error was: '$error'; INC is $INC{$file}";
push @warn => " * Module '$mod' is outdated, we recommend updating above $want. error was: '$error'; INC is $INC{$file}";
}

for my $mod (keys %required) {
Expand Down Expand Up @@ -150,7 +150,7 @@ not tested or verified.
=head1 SOURCE
The source code repository for Test2 can be found at
F<http://github.com/Test-More/test-more/>.
L<https://github.com/Test-More/test-more/>.
=head1 MAINTAINERS
Expand All @@ -175,6 +175,6 @@ Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://dev.perl.org/licenses/>
See L<https://dev.perl.org/licenses/>
=cut
7 changes: 3 additions & 4 deletions cpan/Test-Simple/lib/Test2/API/Context.pm
Expand Up @@ -2,7 +2,7 @@ package Test2::API::Context;
use strict;
use warnings;

our $VERSION = '1.302198';
our $VERSION = '1.302199';


use Carp qw/confess croak/;
Expand Down Expand Up @@ -436,7 +436,6 @@ sub note {
sub diag {
my $self = shift;
my ($message) = @_;
my $hub = $self->{+HUB};
$self->send_event(
'Diag',
message => $message,
Expand Down Expand Up @@ -987,7 +986,7 @@ tools, plugins, and other extensions.
=head1 SOURCE
The source code repository for Test2 can be found at
F<http://github.com/Test-More/test-more/>.
L<https://github.com/Test-More/test-more/>.
=head1 MAINTAINERS
Expand All @@ -1014,6 +1013,6 @@ Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://dev.perl.org/licenses/>
See L<https://dev.perl.org/licenses/>
=cut
6 changes: 3 additions & 3 deletions cpan/Test-Simple/lib/Test2/API/Instance.pm
Expand Up @@ -2,7 +2,7 @@ package Test2::API::Instance;
use strict;
use warnings;

our $VERSION = '1.302198';
our $VERSION = '1.302199';

our @CARP_NOT = qw/Test2::API Test2::API::Instance Test2::IPC::Driver Test2::Formatter/;
use Carp qw/confess carp/;
Expand Down Expand Up @@ -800,7 +800,7 @@ which case new strings will be passed in. These are purely informative, you can
=head1 SOURCE
The source code repository for Test2 can be found at
F<http://github.com/Test-More/test-more/>.
L<https://github.com/Test-More/test-more/>.
=head1 MAINTAINERS
Expand All @@ -825,6 +825,6 @@ Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
See F<http://dev.perl.org/licenses/>
See L<https://dev.perl.org/licenses/>
=cut

0 comments on commit cf08fff

Please sign in to comment.