File: pod-coverage.t

package info (click to toggle)
libpdf-fdf-simple-perl 0.21-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,004 kB
  • sloc: perl: 15,109; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! perl -Tw

use Test::More;

if ($ENV{DO_DIST_CHECK}) {
  eval "use Test::Pod::Coverage";
  plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
  plan tests => 2;
  pod_coverage_ok( "PDF::FDF::Simple");
  pod_coverage_ok( "PDF::FDF::Simple::Builder");

} else {
  plan skip_all => 'Test::Pod::Coverage skipped unless env $DO_DIST_CHECK set.';
}