File: 01.pod-coverage.t

package info (click to toggle)
libdevice-cdio-perl 0.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,248 kB
  • ctags: 2,564
  • sloc: ansic: 11,536; perl: 4,027; makefile: 69; sh: 3
file content (19 lines) | stat: -rwxr-xr-x 496 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl -T
use strict;
BEGIN {
    chdir 't' if -d 't';
}

use lib '../blib/lib', '../blib/arch';
use Test::More;
note "Testing Perl POD documentation";
eval "use Test::Pod::Coverage 1.08";
plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage" if $@;

# Don't know how to get this from perlcdio ignored.
pod_coverage_ok(
    'perlcdio', 
    { also_private => [ qr/^.*$/ ], },
    "Everything in perlcdio is private as it is auto-generated"
    );
done_testing();