X-Git-Url: http://git.shiar.net/perl/plp/.git/blobdiff_plain/178a4a4de0bbc111bf376d6876af16c093e3c838..80bf896339924929e295784d34deb8bc6997de13:/t/pod.t diff --git a/t/pod.t b/t/pod.t deleted file mode 100644 index f4d0ec1..0000000 --- a/t/pod.t +++ /dev/null @@ -1,13 +0,0 @@ -use strict; -use warnings; - -use Test::More; -use ExtUtils::Manifest qw(maniread); -eval 'use Test::Pod 1.00'; -plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; - -my $manifest = maniread(); -my @pod = grep /\.(?:pm|pod)$/, keys %$manifest; -plan tests => scalar @pod; -pod_file_ok($_ => $_) for @pod; -