File: pod_coverage.t

package info (click to toggle)
libbusiness-ismn-perl 1.205-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 156 kB
  • sloc: perl: 239; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 248 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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::ISMN", 
		{
		trustme => [ qr/^[A-Z_]+$/ ],
		}
		);      
	}