File: 011_pod.t

package info (click to toggle)
libxml-rss-feed-perl 2.212-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 268 kB
  • ctags: 111
  • sloc: perl: 2,583; makefile: 38
file content (17 lines) | stat: -rwxr-xr-x 287 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;

BEGIN {
    eval { require Test::Pod; };
    my $test_pod = $@ ? 0 : 1;
    sub TEST_POD {$test_pod}
}

if (TEST_POD) {
    eval { Test::Pod::all_pod_files_ok() };
}
else {
    plan skip_all => "Test::Pod::Coverage required";
}