Codebase list libpoe-component-sslify-perl / upstream/0.14 t / a_prereq.t
upstream/0.14

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

a_prereq.t @upstream/0.14raw · 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::Prereq";
	if ( $@ ) {
		plan skip_all => 'Test::Prereq required to test perl module deps';
	} else {
		prereq_ok();
	}
}