summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-05-27 22:49:00 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-05-28 08:45:48 +0100
commit9e15e51b1fc8645fe190fbc110baa931538c94b7 (patch)
tree80ef5ce4fa5f2d8d13ec02262f2f23f50fe97977 /cpan/Test-Simple
parentf91d7e0d6f9534398b091503efca8c511bbf5174 (diff)
downloadperl-9e15e51b1fc8645fe190fbc110baa931538c94b7.tar.gz
Update Test-Simple to CPAN version 1.001003
[DELTA] 1.001003 Fri Mar 21 21:12:32 PST 2014 * Doc updates for maintainer change
Diffstat (limited to 'cpan/Test-Simple')
-rw-r--r--cpan/Test-Simple/lib/Test/Builder.pm10
-rw-r--r--cpan/Test-Simple/lib/Test/Builder/Module.pm2
-rw-r--r--cpan/Test-Simple/lib/Test/Builder/Tester.pm10
-rw-r--r--cpan/Test-Simple/lib/Test/More.pm12
-rw-r--r--cpan/Test-Simple/lib/Test/Simple.pm9
-rw-r--r--cpan/Test-Simple/lib/Test/Tutorial.pod8
6 files changed, 45 insertions, 6 deletions
diff --git a/cpan/Test-Simple/lib/Test/Builder.pm b/cpan/Test-Simple/lib/Test/Builder.pm
index 061b0fc5a6..00a3ec51ea 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.001002';
+our $VERSION = '1.001003';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)
BEGIN {
@@ -2643,6 +2643,14 @@ Test::Simple, Test::More, Test::Harness
Original code by chromatic, maintained by Michael G Schwern
E<lt>schwern@pobox.comE<gt>
+=head1 MAINTAINERS
+
+=over 4
+
+=item Chad Granum E<lt>exodist@cpan.orgE<gt>
+
+=back
+
=head1 COPYRIGHT
Copyright 2002-2008 by chromatic E<lt>chromatic@wgz.orgE<gt> and
diff --git a/cpan/Test-Simple/lib/Test/Builder/Module.pm b/cpan/Test-Simple/lib/Test/Builder/Module.pm
index 48e9ea8f74..a11033eaba 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 0.99;
require Exporter;
our @ISA = qw(Exporter);
-our $VERSION = '1.001002';
+our $VERSION = '1.001003';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)
diff --git a/cpan/Test-Simple/lib/Test/Builder/Tester.pm b/cpan/Test-Simple/lib/Test/Builder/Tester.pm
index 49a42cead1..5128be9d90 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.23_002";
+our $VERSION = "1.23_003";
use Test::Builder 0.98;
use Symbol;
@@ -444,6 +444,14 @@ permission.
This program is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.
+=head1 MAINTAINERS
+
+=over 4
+
+=item Chad Granum E<lt>exodist@cpan.orgE<gt>
+
+=back
+
=head1 NOTES
Thanks to Richard Clamp E<lt>richardc@unixbeard.netE<gt> for letting
diff --git a/cpan/Test-Simple/lib/Test/More.pm b/cpan/Test-Simple/lib/Test/More.pm
index 50f3e39b0e..217ad59ac5 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.001002';
+our $VERSION = '1.001003';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)
use Test::Builder::Module 0.99;
@@ -1887,6 +1887,14 @@ from Joshua Pritikin's Test module and lots of help from Barrie
Slaymaker, Tony Bowden, blackstar.co.uk, chromatic, Fergal Daly and
the perl-qa gang.
+=head1 MAINTAINERS
+
+=over 4
+
+=item Chad Granum E<lt>exodist@cpan.orgE<gt>
+
+=back
+
=head1 BUGS
@@ -1896,7 +1904,7 @@ See F<http://rt.cpan.org> to report and view bugs.
=head1 SOURCE
The source code repository for Test::More can be found at
-F<http://github.com/schwern/test-more/>.
+F<http://github.com/Test-More/test-more/>.
=head1 COPYRIGHT
diff --git a/cpan/Test-Simple/lib/Test/Simple.pm b/cpan/Test-Simple/lib/Test/Simple.pm
index 86143d6320..8d123b46c7 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.001002';
+our $VERSION = '1.001003';
$VERSION = eval $VERSION; ## no critic (BuiltinFunctions::ProhibitStringyEval)
use Test::Builder::Module 0.99;
@@ -199,6 +199,13 @@ Look in Test::More's SEE ALSO for more testing modules.
Idea by Tony Bowden and Paul Johnson, code by Michael G Schwern
E<lt>schwern@pobox.comE<gt>, wardrobe by Calvin Klein.
+=head1 MAINTAINERS
+
+=over 4
+
+=item Chad Granum E<lt>exodist@cpan.orgE<gt>
+
+=back
=head1 COPYRIGHT
diff --git a/cpan/Test-Simple/lib/Test/Tutorial.pod b/cpan/Test-Simple/lib/Test/Tutorial.pod
index b89fd07ca5..8badf38e9f 100644
--- a/cpan/Test-Simple/lib/Test/Tutorial.pod
+++ b/cpan/Test-Simple/lib/Test/Tutorial.pod
@@ -594,6 +594,14 @@ bugs!
Michael G Schwern E<lt>schwern@pobox.comE<gt> and the perl-qa dancers!
+=head1 MAINTAINERS
+
+=over 4
+
+=item Chad Granum E<lt>exodist@cpan.orgE<gt>
+
+=back
+
=head1 COPYRIGHT
Copyright 2001 by Michael G Schwern E<lt>schwern@pobox.comE<gt>.