Added pod tests.

This commit is contained in:
Dave Cross 2009-07-25 20:48:59 +01:00
parent 88476575eb
commit cfaa91381e
2 changed files with 8 additions and 0 deletions

4
t/pod.t Normal file
View file

@ -0,0 +1,4 @@
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();

4
t/pod_coverage.t Normal file
View file

@ -0,0 +1,4 @@
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;
all_pod_coverage_ok( { also_private => [ 'BUILD' ] } );