Skip to content

Commit

Permalink
Updated support links
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Nov 14, 2020
1 parent 0908bc7 commit 0c7c23e
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 5 deletions.
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ README.md
t/00-load.t
t/coverage.t
t/dist.t
t/links.t
t/manifest.t
t/no404s.t
t/pfopen.t
t/pod-cm.t
t/pod.t
18 changes: 13 additions & 5 deletions lib/File/pfopen.pm
Original file line number Diff line number Diff line change
Expand Up @@ -116,21 +116,29 @@ You can also look for information at:
=over 4
=item * MetaCPAN
L<https://metacpan.org/release/File-pfopen>
=item * RT: CPAN's request tracker
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-pfopen>
L<https://rt.cpan.org/NoAuth/Bugs.html?Dist=File-pfopen>
=item * CPANTS
L<http://cpants.cpanauthors.org/dist/File-pfopen>
=item * AnnoCPAN: Annotated CPAN documentation
=item * CPAN Testers' Matrix
L<http://annocpan.org/dist/File-pfopen>
L<http://matrix.cpantesters.org/?dist=File-pfopen>
=item * CPAN Ratings
L<http://cpanratings.perl.org/d/File-pfopen>
=item * Search CPAN
=item * CPAN Testers Dependencies
L<http://search.cpan.org/dist/File-pfopen/>
L<http://deps.cpantesters.org/?module=File::pfopen>
=back
Expand Down
16 changes: 16 additions & 0 deletions t/links.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!perl -w

use strict;
use warnings;
use Test::Most;

if(not $ENV{AUTHOR_TESTING}) {
plan(skip_all => 'Author tests not required for installation');
}

eval "use Test::Pod::LinkCheck";
if($@) {
plan skip_all => 'Test::Pod::LinkCheck required for testing POD';
} else {
Test::Pod::LinkCheck->new->all_pod_ok();
}
16 changes: 16 additions & 0 deletions t/no404s.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!perl -wT

use strict;
use warnings;
use Test::Most;

if(not $ENV{AUTHOR_TESTING}) {
plan(skip_all => 'Author tests not required for installation');
}

eval "use Test::Pod::No404s";
if($@) {
plan skip_all => 'Test::Pod::No404s required for testing POD';
} else {
all_pod_files_ok();
}

0 comments on commit 0c7c23e

Please sign in to comment.