| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::Plugin::PodSyntaxTests - a release test for Pod syntax
version 4.200008
This is an extension of Dist::Zilla::Plugin::InlineFiles, providing the following files:
xt/release/pod-syntax.t - a standard Test::Pod 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::PodSyntaxTests; BEGIN { $Dist::Zilla::Plugin::PodSyntaxTests::VERSION = '4.200008'; } # ABSTRACT: a release test for Pod syntax use Moose; extends 'Dist::Zilla::Plugin::InlineFiles'; __PACKAGE__->meta->make_immutable; no Moose; 1;
__DATA__ ___[ xt/release/pod-syntax.t ]___ #!perl use Test::More; eval "use Test::Pod 1.41"; plan skip_all => "Test::Pod 1.41 required for testing POD" if $@; all_pod_files_ok();