File: pod-coverage.t

package info (click to toggle)
libdbd-odbc-perl 1.24-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,012 kB
  • ctags: 398
  • sloc: perl: 6,314; ansic: 4,875; makefile: 29; 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();