File: pod-coverage.t

package info (click to toggle)
libconfig-scoped-perl 0.12-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 752 kB
  • ctags: 73
  • sloc: perl: 10,347; makefile: 42
file content (13 lines) | stat: -rw-r--r-- 397 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!perl -T

use Test::More;
eval "use Test::Pod::Coverage 1.04";
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
  if $@;
plan tests => 2;
pod_coverage_ok('Config::Scoped');
pod_coverage_ok(
  'Config::Scoped::Error',
  { also_private => [qr/^[A-Z_]+$/], trustme => [qr/stringify/] },
'Config::Scoped::Error, all-caps functions and overloaded methods are private',
);