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