File: pod_coverage.t

package info (click to toggle)
libbusiness-isbn-data-perl 20081208-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 124 kB
  • ctags: 4
  • sloc: perl: 267; makefile: 17
file content (15 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# : pod_coverage.t,v 1.1 2005/03/04 13:08:26 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( "Business::ISBN::Data" );      
	}