File: pod-coverage.t

package info (click to toggle)
libparse-edid-perl 1.0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 432 kB
  • sloc: perl: 1,392; makefile: 2
file content (14 lines) | stat: -rwxr-xr-x 253 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;
use English qw(-no_match_vars);

eval { require Test::Pod::Coverage; };
plan(skip_all => 'Test::Pod::Coverage required') if $EVAL_ERROR;


Test::Pod::Coverage->import();
all_pod_coverage_ok();