File: pod_coverage.t

package info (click to toggle)
libtie-cycle-perl 1.21-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 112 kB
  • ctags: 13
  • sloc: perl: 51; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
use Test::More 0.95;
eval "use Test::Pod::Coverage";

if( $@ ) {
	plan skip_all => "Test::Pod::Coverage required for testing POD";
	}
else {
	pod_coverage_ok( "Tie::Cycle",
		{ trustme => [ qr/^[A-Z_]+$/ ] }
		);      
	}

done_testing();