1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
package main;
use 5.008;
use strict;
use warnings;
use Test::More 0.88; # Because of done_testing();
BEGIN {
local $@ = undef;
eval {
require Test::Pod::LinkCheck::Lite;
Test::Pod::LinkCheck::Lite->import( ':const' );
1;
} or plan skip_all => 'Unable to load Test::Pod::LinkCheck::Lite';
}
Test::Pod::LinkCheck::Lite->new(
prohibit_redirect => sub {
my ( undef, undef, $url ) = @_;
'http://datetime.perl.org/' eq $url
and return;
return ALLOW_REDIRECT_TO_INDEX;
},
)->all_pod_files_ok();
done_testing;
1;
# ex: set textwidth=72 :
|