File: 90-pod.t

package info (click to toggle)
libsnmp-extension-passpersist-perl 0.07-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 164 kB
  • ctags: 39
  • sloc: perl: 776; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 369 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!perl -T
use strict;
use warnings;
use Test::More;

# Ensure a recent version of Test::Pod
plan skip_all => "Test::Pod 1.22 required for testing POD"
    unless eval "use Test::Pod 1.22; 1";

all_pod_files_ok();

if (eval "use Pod::Checker; 1") {
    my $checker = Pod::Checker->new(-warnings => 1);
    $checker->parse_from_file($_, \*STDERR) for all_pod_files();
}