[t][TT #1122] Convert t/op/literal.t to PIR and keep old PASM tests in t/op/literal...
[parrot.git] / t / distro / meta_yml.t
blob6ed8d6073d132f6bbbea78e1ce4b69942a593ebc
1 #! perl
2 # Copyright (C) 2008, Parrot Foundation.
3 # $Id$
5 =head1 NAME
7 t/distro/meta_yml.t - check sanity of the META.yml file
9 =head1 SYNOPSIS
11     % prove t/distro/meta_yml.t
13 =head1 DESCRIPTION
15 Checks the sanitiy of the file META.yml, which gives information
16 on a CPAN distribution.
18 =cut
20 use strict;
21 use warnings;
22 use 5.008;
24 use Test::More;
26 # Test::CPAN::Meta complains about 'artistic2' license.
27 # So let's wait for version 0.08
28 # See http://rt.cpan.org/Public/Bug/Display.html?id=34130
29 eval "use Test::CPAN::Meta 0.08";
30 plan skip_all => "Test::CPAN::Meta 0.08 required for testing META.yml" if $@;
32 meta_yaml_ok();