File: pod.t

package info (click to toggle)
libsys-syslog-perl 0.33-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 492 kB
  • ctags: 559
  • sloc: perl: 1,373; pascal: 207; ansic: 51; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!perl -wT
use strict;
use Test::More;


plan skip_all => "Test::Pod v1.14 required for testing POD"
    unless eval "use Test::Pod 1.14; 1";

all_pod_files_ok();

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