| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::Plugin::MetaTests - common extra tests for META.yml
version 4.200008
This is an extension of Dist::Zilla::Plugin::InlineFiles, providing the following files:
xt/release/meta-yaml.t - a standard Test::CPAN::Meta test
Ricardo SIGNES <rjbs@cpan.org>
This software is copyright (c) 2011 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
package Dist::Zilla::Plugin::MetaTests; BEGIN { $Dist::Zilla::Plugin::MetaTests::VERSION = '4.200008'; } # ABSTRACT: common extra tests for META.yml use Moose; extends 'Dist::Zilla::Plugin::InlineFiles'; __PACKAGE__->meta->make_immutable; no Moose; 1;
__DATA__ ___[ xt/release/distmeta.t ]___ #!perl use Test::More; eval "use Test::CPAN::Meta"; plan skip_all => "Test::CPAN::Meta required for testing META.yml" if $@; meta_yaml_ok();