Codebase list libpoe-component-sslify-perl / upstream/0.13 t / a_manifest.t
upstream/0.13

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

a_manifest.t @upstream/0.13raw · 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::CheckManifest";
	if ( $@ ) {
		plan skip_all => 'Test::CheckManifest required for validating the MANIFEST';
	} else {
		ok_manifest( {
			'filter'	=>	[ qr/\.svn/, qr/\.tar\.gz$/, ],
		} );
	}
}