File: pod.t

package info (click to toggle)
libdigest-sha-perl 5.47-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 252 kB
  • ctags: 263
  • sloc: ansic: 1,005; perl: 280; makefile: 52
file content (18 lines) | stat: -rw-r--r-- 304 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
BEGIN {
	if ($ENV{PERL_CORE}) {
		chdir 't' if -d 't';
		@INC = '../lib';
	}
}

BEGIN {
	eval "use Test::More";
	if ($@) {
		print "1..0 # Skipped: Test::More not installed\n";
		exit;
	}
}

eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();