]> git.imager.perl.org - imager.git/blob - t/t91pod.t
[rt.cpan.org #65385] Patch for Imager::Color->hsv
[imager.git] / t / t91pod.t
1 #!perl -w
2 use strict;
3 use Test::More;
4 use ExtUtils::Manifest qw(maniread);
5 eval "use Test::Pod 1.00;";
6 plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
7 my $manifest = maniread();
8 my @pod = grep /\.(pm|pl|pod|PL)$/, keys %$manifest;
9 plan tests => scalar(@pod);
10 for my $file (@pod) {
11   pod_file_ok($file, "pod ok in $file");
12 }