Dist::Zilla::Plugin::PodSyntaxTests - a release test for Pod syntax


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

Index


Code Index:

NAME

Top

Dist::Zilla::Plugin::PodSyntaxTests - a release test for Pod syntax

VERSION

Top

version 4.200008

DESCRIPTION

Top

This is an extension of Dist::Zilla::Plugin::InlineFiles, providing the following files:

  xt/release/pod-syntax.t   - a standard Test::Pod test

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


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();