Bytes-Random-Secure-Tiny

 view release on metacpan or  search on metacpan

xt/06-meta-yaml.t  view on Meta::CPAN

## no critic(RCS,VERSION,explicit,Module,eval)
use strict;
use warnings;

use Test::More;

if( $] lt '5.018000' ) {
  plan skip_all => 'YAML test not avaiable pre-5.18';
 exit(0);
}

if( ! $ENV{RELEASE_TESTING} ) {
  plan skip_all =>
    'Author only test: META.yml tests run only if RELEASE_TESTING set.';
}
elsif ( ! eval 'use Test::CPAN::Meta::YAML; 1;' ) {
  plan skip_all =>
    'Author META.yml test requires Test::CPAN::Meta::YAML.';
}
else {
  note 'Testing META.yml';
  meta_yaml_ok();
}



( run in 0.565 second using v1.01-cache-2.11-cpan-800906f7e73 )