File: pod_coverage.t

package info (click to toggle)
libtest-prereq-perl 1.037-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 148 kB
  • ctags: 20
  • sloc: perl: 265; makefile: 20
file content (19 lines) | stat: -rw-r--r-- 307 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Id$

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

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

	pod_coverage_ok( "Test::Prereq" );
	
	pod_coverage_ok( "Test::Prereq::Build",
		{ trustme => [ qr/create_build_script|prereq_ok/ ] } );
	}