t/91-meta: fallback to Test::CPAN::Meta
[perl/plp/.git] / t / 91-meta.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5
6 my @metatesters = (
7         'Test::CPAN::Meta::YAML 0.13',
8         'Test::CPAN::Meta 0.14',
9 );
10 eval "use $_" and last for @metatesters;
11 plan skip_all => "Test::CPAN::Meta(::YAML) required to test META.yml" if $@;
12
13 meta_yaml_ok();
14