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

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

a_minimumversion.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::MinimumVersion";
	if ( $@ ) {
		plan skip_all => 'Test::MinimumVersion required to test minimum perl version';
	} else {
		all_minimum_version_from_metayml_ok();
	}
}