Added pod tests.
This commit is contained in:
parent
88476575eb
commit
cfaa91381e
2 changed files with 8 additions and 0 deletions
4
t/pod.t
Normal file
4
t/pod.t
Normal 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
4
t/pod_coverage.t
Normal 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' ] } );
|
Loading…
Add table
Reference in a new issue