require Test::YAML::Meta 0.10 for correct testing
[perl/plp/.git] / t / 91-meta.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 eval 'use Test::YAML::Meta';
6 plan skip_all => "Test::YAML::Meta required to test META.yml" if $@;
7 plan skip_all => "Test::YAML::Meta v0.10 required to test META.yml correctly"
8         if $Test::YAML::Meta::VERSION < 0.10;
9
10 meta_yaml_ok();
11