summaryrefslogtreecommitdiff
path: root/t/09_no404s.t
blob: 69441380e8700172cac2ab0e2cd496e72e3d81ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
use strict; use warnings;

use Test::More;

if (!$ENV{EXTENDED_TESTING}) {
  plan skip_all => "Skip \$ENV{EXTENDED_TESTING} is not set\n";
}

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