File: pod-coverage.t

package info (click to toggle)
libemail-send-perl 2.198-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 300 kB
  • ctags: 76
  • sloc: perl: 523; makefile: 8
file content (13 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!perl -T

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

# Having to trustme these is obnoxious.  It would be nice if there was a base
# class for mailers.  Then again, whatever.  -- rjbs, 2006-07-06
all_pod_coverage_ok({
  trustme => [ qw(send is_available get_env_sender get_env_recipients) ],
  coverage_class => 'Pod::Coverage::CountParents'
});