Acme-Everything

 view release on metacpan or  search on metacpan

t/99_pmv.t  view on Meta::CPAN

#!/usr/bin/perl

use strict;
BEGIN {
	$|  = 1;
	$^W = 1;
}
use Test::More;

# Skip if doing a regular install
unless ( $ENV{AUTOMATED_TESTING} ) {
	plan( skip_all => "Author tests not required for installation" );
}

# Can we run the version tests
eval "use Test::MinimumVersion 0.007;";
if ( $@ ) {
	plan( skip_all => "Test::MinimumVersion not available" );
}

# Test minimum version
all_minimum_version_from_metayml_ok();



( run in 0.500 second using v1.01-cache-2.11-cpan-5a3173703d6 )