File: pod.t

package info (click to toggle)
libdata-printer-perl 1.000001-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 692 kB
  • sloc: perl: 4,208; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
use strict;
use warnings;
use Test::More;

my $success = eval "use Test::Pod 1.41; 1";
if ($success) {
    all_pod_files_ok();
}
else {
    plan skip_all => 'Test::Pod not found';
}