Codebase list libpoe-component-sslify-perl / upstream/0.13 t / a_pod.t
upstream/0.13

Tree @upstream/0.13 (Download .tar.gz)

a_pod.t @upstream/0.13raw · history · blame

#!/usr/bin/perl

use Test::More;

# AUTHOR test
if ( not $ENV{TEST_AUTHOR} ) {
	plan skip_all => 'Author test. Sent $ENV{TEST_AUTHOR} to a true value to run.';
} else {
	eval "use Test::Pod";
	if ( $@ ) {
		plan skip_all => 'Test::Pod required for testing POD';
	} else {
		all_pod_files_ok();
	}
}