Description: Adds a Test::Pod check to the testsuite
Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=57211
Author: Chris Butler <chrisb@debian.org>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2012-05-26

--- a/Makefile.PL
+++ b/Makefile.PL
@@ -13,6 +13,7 @@
     'NAME'              => 'Lingua::EN::Tagger',
     'VERSION_FROM'      => 'Tagger.pm', # finds $VERSION
     'MIN_PERL_VERSION'  => '5.008001',
+    'BUILD_REQUIRES'	=> { 'Test::Pod' => '1.00' },
     'PREREQ_PM'         => { 'Lingua::Stem' => '0.81', 
                                 'HTML::Parser' => '3.45',
                                 'HTML::Tagset' => '3.20',
--- /dev/null
+++ b/t/pod.t
@@ -0,0 +1,7 @@
+#
+# Tests that there are no errors in the PODs
+#
+use Test::More;
+eval "use Test::Pod 1.00";
+plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
+all_pod_files_ok();
