File: 51podcoverage.t

package info (click to toggle)
libparse-debcontrol-perl 2.005-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 384 kB
  • sloc: perl: 910; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl -w 

use strict;
use Test::More tests => 1;
push @INC, "./lib";
eval "use Pod::Coverage";

SKIP: {
	skip "Pod::Coverage required for documentation check",1 if($@);

	my $pc = Pod::Coverage->new(package => "Parse::DebControl");
	ok($pc->coverage == 1, "Pod::Coverage documentation overview is ok");
}