Codebase list libpoe-component-sslify-perl / 935820c t / a_strict.t
935820c

Tree @935820c (Download .tar.gz)

a_strict.t @935820craw · 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::Strict";
	if ( $@ ) {
		plan skip_all => 'Test::Strict required to test strictness';
	} else {
		all_perl_files_ok( 'lib/' );
	}
}