File: pod-coverage.t

package info (click to toggle)
libdbd-odbc-perl 1.37-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,272 kB
  • sloc: perl: 7,932; ansic: 5,991; makefile: 33; sql: 8
file content (19 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!perl

use Test::More;
my $has_test_nowarnings = 1;
eval "require Test::NoWarnings";
$has_test_nowarnings = undef if $@;
my $tests = 1;
$tests += 1 if $has_test_nowarnings;
plan tests => $tests;

END {
    Test::NoWarnings::had_no_warnings()
          if ($has_test_nowarnings);
}

pass('Pod::Coverage');
eval "use Test::Pod::Coverage 1.04";
diag("Test::Pod::Coverage 1.04 required for testing POD coverage") if $@;
#all_pod_coverage_ok();