-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #925 from mauke/fix-links
fix links to github repo and licenses
- Loading branch information
Showing
67 changed files
with
150 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2647,4 +2647,4 @@ Copyright 2002-2008 by chromatic E<lt>[email protected]<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/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -102,6 +102,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -63,6 +63,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,9 +15,9 @@ L<Test::Tutorial> | |
|
||
=head2 Are there any modules for testing? | ||
|
||
A whole bunch. Start with L<Test::Simple> then move onto Test::More. | ||
A whole bunch. Start with L<Test::Simple>, then move on to L<Test::More>. | ||
|
||
Then go onto L<http://search.cpan.org> and search for "Test". | ||
Then go on to L<https://metacpan.org/> and search for "Test". | ||
|
||
=head2 Are there any modules for testing web pages/CGI programs? | ||
|
||
|
@@ -212,12 +212,12 @@ C<ok(...) || diag "...";> | |
|
||
=head2 Why use an ok() function? | ||
|
||
On Tue, Aug 28, 2001 at 02:12:46PM +0100, Robin Houston wrote: | ||
> Michael Schwern wrote: | ||
> > Ah HA! I've been wondering why nobody ever thinks to write a simple | ||
> > ok() function for their tests! perlhack has bad testing advice. | ||
> | ||
> Could you explain the advantage of having a "simple ok() function"? | ||
On Tue, Aug 28, 2001 at 02:12:46PM +0100, Robin Houston wrote: | ||
> Michael Schwern wrote: | ||
> > Ah HA! I've been wondering why nobody ever thinks to write a simple | ||
> > ok() function for their tests! perlhack has bad testing advice. | ||
> | ||
> Could you explain the advantage of having a "simple ok() function"? | ||
|
||
Because writing: | ||
|
||
|
@@ -230,9 +230,9 @@ first place. It also looks like hell and obscures the real purpose. | |
Besides, that will cause problems on VMS. | ||
|
||
|
||
> As somebody who has spent many painful hours debugging test failures, | ||
> I'm intimately familiar with the _disadvantages_. When you run the | ||
> test, you know that "test 113 failed". That's all you know, in general. | ||
> As somebody who has spent many painful hours debugging test failures, | ||
> I'm intimately familiar with the _disadvantages_. When you run the | ||
> test, you know that "test 113 failed". That's all you know, in general. | ||
|
||
Second advantage is you can easily upgrade the C<ok()> function to fix | ||
this, either by slapping this line in: | ||
|
@@ -333,16 +333,16 @@ The most useful functions in L<Test::More> are C<is()>, C<like()> and C<is_deepl | |
|
||
=head2 How do I check for an infinite loop? | ||
|
||
On Mon, Mar 18, 2002 at 03:57:55AM -0500, Mark-Jason Dominus wrote: | ||
> | ||
> Michael The Schwern <[email protected]> says: | ||
> > Use alarm and skip the test if $Config{d_alarm} is false (see | ||
> > t/op/alarm.t for an example). If you think the infinite loop is due | ||
> > to a programming glitch, as opposed to a cross-platform issue, this | ||
> > will be enough. | ||
> | ||
> Thanks very much! | ||
> | ||
On Mon, Mar 18, 2002 at 03:57:55AM -0500, Mark-Jason Dominus wrote: | ||
> | ||
> Michael The Schwern <[email protected]> says: | ||
> > Use alarm and skip the test if $Config{d_alarm} is false (see | ||
> > t/op/alarm.t for an example). If you think the infinite loop is due | ||
> > to a programming glitch, as opposed to a cross-platform issue, this | ||
> > will be enough. | ||
> | ||
> Thanks very much! | ||
> | ||
|
||
=head2 How can I check that flock works? | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -2036,7 +2036,7 @@ Copyright 2001-2008 by Michael G Schwern E<lt>[email protected]<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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -213,7 +213,7 @@ Copyright 2001-2008 by Michael G Schwern E<lt>[email protected]<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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -690,6 +690,6 @@ Schwern <[email protected]>. | |
Under the same license as Perl itself | ||
See http://www.perl.com/perl/misc/Artistic.html | ||
See L<https://dev.perl.org/licenses/> | ||
=cut |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -236,6 +236,6 @@ chunks removed by Fergal Daly <[email protected]>. | |
Under the same license as Perl itself | ||
See http://www.perl.com/perl/misc/Artistic.html | ||
See L<https://dev.perl.org/licenses/> | ||
=cut |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,6 +74,6 @@ Copyright 2003 by Fergal Daly <[email protected]>. | |
Under the same license as Perl itself | ||
See http://www.perl.com/perl/misc/Artistic.html | ||
See L<https://dev.perl.org/licenses/> | ||
=cut |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -183,7 +183,7 @@ emailing Chad Granum E<lt>[email protected]<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 | ||
|
@@ -208,6 +208,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -175,6 +175,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -987,7 +987,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 | ||
|
@@ -1014,6 +1014,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -825,6 +825,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -604,7 +604,7 @@ C<error_messages()> returns. | |
=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 | ||
|
@@ -629,6 +629,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1058,7 +1058,7 @@ TODO | |
=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 | ||
|
@@ -1083,6 +1083,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ Test2::API::InterceptResult::Hub - Hub used by InterceptResult. | |
=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 | ||
|
@@ -61,6 +61,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -166,7 +166,7 @@ Internal use only, please ignore. | |
=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 | ||
|
@@ -191,6 +191,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -196,7 +196,7 @@ match the hub you expect (passed in as an argument) it will throw an exception. | |
=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 | ||
|
@@ -221,6 +221,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -748,7 +748,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 | ||
|
@@ -773,6 +773,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,7 +79,7 @@ The reason for the bailout. | |
=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 | ||
|
@@ -104,6 +104,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,7 +69,7 @@ The message for the diag. | |
=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 | ||
|
@@ -94,6 +94,6 @@ Copyright 2020 Chad Granum E<lt>[email protected]<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 |
Oops, something went wrong.