File: 03_pod_coverage.t

package info (click to toggle)
libnetsds-perl 1.301-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 296 kB
  • sloc: perl: 1,516; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 682 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env perl
#===============================================================================
#
#         FILE:  03_pod_coverage.t
#
#  DESCRIPTION:  Check POD coverage
#
#       AUTHOR:  Michael Bochkaryov (Rattler), <misha@rattler.kiev.ua>
#      COMPANY:  Net.Style
#      VERSION:  1.0
#      CREATED:  13.07.2008 23:54:48 EEST
#     REVISION:  $Id: 03_pod_coverage.t 8 2008-07-13 21:11:35Z misha $
#===============================================================================

use strict;
use warnings;

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();