App-local-lib-Win32Helper

 view release on metacpan or  search on metacpan

xt/805_meta.t  view on Meta::CPAN

#!/usr/bin/perl

# Test that our META.yml file matches the specification

use strict;

BEGIN {
	use English qw(-no_match_vars);
	$OUTPUT_AUTOFLUSH = 1;
	$WARNING = 1;
}

my @MODULES = (
	'Test::CPAN::Meta 0.12',
);

# Load the testing modules
use Test::More;
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 1.627 second using v1.01-cache-2.11-cpan-39bf76dae61 )