File: pod_coverage.t

package info (click to toggle)
libtest-manifest-perl 1.14-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 96 kB
  • ctags: 7
  • sloc: perl: 78; makefile: 35
file content (15 lines) | stat: -rw-r--r-- 266 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# $Id: pod_coverage.t,v 1.1 2005/03/19 18:35:04 comdog Exp $

use Test::More;
eval "use Test::Pod::Coverage";

if( $@ )
	{
	plan skip_all => "Test::Pod::Coverage required for testing POD";
	}
else
	{
	plan tests => 1;

	pod_coverage_ok( "Test::Manifest" );      
	}