Alien-WiX-Version30

 view release on metacpan or  search on metacpan

xt/author/meta.t  view on Meta::CPAN

#!perl

# Test that our META.yml file matches the specification

use strict;
use Test::More;

BEGIN {
	BAIL_OUT ('Perl version unacceptably old.') if ($] < 5.008001);
	use English qw(-no_match_vars);
	$OUTPUT_AUTOFLUSH = 1;
	$WARNING = 1;
}

my @MODULES = (
    'Parse::CPAN::Meta 1.38',
	'Test::CPAN::Meta 0.13',
);

# Load the testing modules
foreach my $MODULE ( @MODULES ) {
	eval "use $MODULE";
	if ( $EVAL_ERROR ) {
		BAIL_OUT( "Failed to load required release-testing module $MODULE" );
	}
}

meta_yaml_ok();



( run in 0.646 second using v1.01-cache-2.11-cpan-13bb782fe5a )