File: 01.pod-coverage.t

package info (click to toggle)
libdevice-cdio-perl 0.2.4-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 2,396 kB
  • ctags: 893
  • sloc: ansic: 7,012; perl: 3,625; makefile: 119; sh: 3
file content (21 lines) | stat: -rwxr-xr-x 519 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/perl -T
# $Id: 01.pod-coverage.t,v 1.2 2006/02/09 19:09:21 rocky Exp $

use strict;
BEGIN {
    chdir '..' if ! -d 't';
    push @INC, ('blib/lib', 'blib/arch');
}

use Test::More;
eval "use Test::Pod::Coverage 1.04";
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;

all_pod_coverage_ok();

# Don't know how to get this from perlcdio ignored.
#all_pod_coverage_ok(
#		    'perlcdio', 
#		    { also_private => [ qr/this$/ ] },
#		    "perlcdio, 'this' routine"
#		    );