From: Shawn M Moore Date: Fri, 3 Oct 2008 14:48:25 +0000 (+0000) Subject: Make pod tests run only for authors X-Git-Tag: 0.16~25 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2d1a76d7e09a43ce4010a0b6251d31446d8efeff;p=gitmo%2FMooseX-AttributeHelpers.git Make pod tests run only for authors --- diff --git a/t/pod.t b/t/pod.t index 4ae1af3..c524a1a 100644 --- a/t/pod.t +++ b/t/pod.t @@ -6,6 +6,7 @@ use warnings; use Test::More; eval "use Test::Pod 1.14"; +plan skip_all => "Pod tests run only authors" unless -e "inc/.author"; plan skip_all => "Test::Pod 1.14 required for testing POD" if $@; all_pod_files_ok(); diff --git a/t/pod_coverage.t b/t/pod_coverage.t index 7569358..4720fa4 100644 --- a/t/pod_coverage.t +++ b/t/pod_coverage.t @@ -6,6 +6,7 @@ use warnings; use Test::More; eval "use Test::Pod::Coverage 1.04"; +plan skip_all => "Pod tests run only authors" unless -e "inc/.author"; plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@; all_pod_coverage_ok();