From: Stevan Little Date: Mon, 7 Apr 2008 13:33:49 +0000 (+0000) Subject: pod test X-Git-Tag: 0.04~33 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-MetaDescription.git;a=commitdiff_plain;h=48b1f986834ed4eab1cf338cc85faff345acf556 pod test --- diff --git a/MANIFEST b/MANIFEST index 801e19a..965cb57 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,5 +1,7 @@ Changes +Makefile.PL MANIFEST +MANIFEST.SKIP README lib/MooseX/MetaDescription.pm lib/MooseX/MetaDescription/Description.pm @@ -9,3 +11,4 @@ lib/MooseX/MetaDescription/Meta/Trait.pm t/000_load.t t/001_basic.t t/002_custom_description.t +t/pod.t diff --git a/lib/MooseX/MetaDescription.pm b/lib/MooseX/MetaDescription.pm index dc4a2b0..b4e681d 100644 --- a/lib/MooseX/MetaDescription.pm +++ b/lib/MooseX/MetaDescription.pm @@ -16,7 +16,7 @@ __END__ =head1 NAME -MooseX::MetaDescription - A Moosey solution to this problem +MooseX::MetaDescription - A framework for adding additional metadata to Moose classes =head1 SYNOPSIS @@ -40,6 +40,9 @@ to cpan-RT. =head1 AUTHOR +Code and Design originally by Jonathan Rockway in the Ernst module, +extracted and refactored by: + Stevan Little Estevan.little@iinteractive.comE =head1 COPYRIGHT AND LICENSE diff --git a/t/pod.t b/t/pod.t new file mode 100644 index 0000000..4ae1af3 --- /dev/null +++ b/t/pod.t @@ -0,0 +1,11 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; + +eval "use Test::Pod 1.14"; +plan skip_all => "Test::Pod 1.14 required for testing POD" if $@; + +all_pod_files_ok();