File: pod-coverage.t

package info (click to toggle)
libxml-feed-perl 0.65%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 508 kB
  • sloc: perl: 1,162; xml: 682; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
#!perl

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 $@;
my @modules   = grep { !/(RSS|Atom)/ }Test::Pod::Coverage::all_modules();
plan tests => scalar(@modules);
pod_coverage_ok($_, { also_private => [ qr/^init_empty/ ], },) for @modules;