Codebase list libpoe-component-sslify-perl / 0da4e5f t / a_pod.t
0da4e5f

Tree @0da4e5f (Download .tar.gz)

a_pod.t @0da4e5f

436bc8f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
#!/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();
	}
}