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

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

a_dependencies.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::Dependencies exclude => [ qw/ POE::Component::SSLify / ]";
	if ( $@ ) {
		plan skip_all => 'Test::Dependencies required to test perl module deps';
	} else {
		ok_dependencies();
	}
}