File: pod_coverage.t

package info (click to toggle)
libnet-sieve-script-perl 0.09-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 292 kB
  • sloc: perl: 2,819; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Id: pod_coverage.t 884 2005-10-05 00:12:22Z claco $
use strict;
use warnings;
use Test::More;

use lib qw(lib);

eval 'use Test::Pod::Coverage 1.04';
plan skip_all => 'Test::Pod::Coverage 1.04' if $@;

eval 'use Pod::Coverage 0.14';
plan skip_all => 'Pod::Coverage 0.14 not installed' if $@;

my $trustme = {
    trustme =>
    [qr/^new$/]
};

all_pod_coverage_ok($trustme);