File: pod_cvg.t

package info (click to toggle)
libdata-pond-perl 0.006-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 180 kB
  • sloc: perl: 456; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 278 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
use warnings;
use strict;

use Test::More;
plan skip_all => "these tests are for testing by the author"
	unless $ENV{AUTHOR_TESTING};
plan skip_all => "Test::Pod::Coverage not available"
	unless eval "use Test::Pod::Coverage; 1";
Test::Pod::Coverage::all_pod_coverage_ok();

1;