pod test
Stevan Little [Mon, 7 Apr 2008 13:33:49 +0000 (13:33 +0000)]
MANIFEST
lib/MooseX/MetaDescription.pm
t/pod.t [new file with mode: 0644]

index 801e19a..965cb57 100644 (file)
--- 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
index dc4a2b0..b4e681d 100644 (file)
@@ -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 E<lt>stevan.little@iinteractive.comE<gt>
 
 =head1 COPYRIGHT AND LICENSE
diff --git a/t/pod.t b/t/pod.t
new file mode 100644 (file)
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();