From: Tomas Doran Date: Sun, 22 Nov 2009 20:11:17 +0000 (+0000) Subject: Pod tests are also author only X-Git-Tag: 5.80014_02~10^2~9 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=91b4b59593fcf7b74562c89b5479b2305d78b94c;hp=540ad35188f616d28a286f5804d7d8d19710d2ae;p=catagits%2FCatalyst-Runtime.git Pod tests are also author only --- diff --git a/t/02pod.t b/t/02pod.t deleted file mode 100644 index 05aa78a..0000000 --- a/t/02pod.t +++ /dev/null @@ -1,7 +0,0 @@ -use Test::More; - -eval "use Test::Pod 1.14"; -plan skip_all => 'Test::Pod 1.14 required' if $@; -plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD} || -e 'inc/.author'; - -all_pod_files_ok(); diff --git a/t/03podcoverage.t b/t/03podcoverage.t deleted file mode 100644 index 61a207b..0000000 --- a/t/03podcoverage.t +++ /dev/null @@ -1,13 +0,0 @@ -use Test::More; - -eval "use Pod::Coverage 0.19"; -plan skip_all => 'Pod::Coverage 0.19 required' if $@; -eval "use Test::Pod::Coverage 1.04"; -plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@; -plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD} || -e 'inc/.author'; - -all_pod_coverage_ok( - { - also_private => ['BUILD'] - } -); diff --git a/t/author/pod.t b/t/author/pod.t new file mode 100644 index 0000000..f908f73 --- /dev/null +++ b/t/author/pod.t @@ -0,0 +1,8 @@ +use strict; +use warnings; +use Test::More; + +use Test::Pod 1.14; + +all_pod_files_ok(); + diff --git a/t/author/podcoverage.t b/t/author/podcoverage.t new file mode 100644 index 0000000..e8730de --- /dev/null +++ b/t/author/podcoverage.t @@ -0,0 +1,13 @@ +use strict; +use warnings; +use Test::More; + +use Pod::Coverage 0.19; +use Test::Pod::Coverage 1.04; + +all_pod_coverage_ok( + { + also_private => ['BUILD'] + } +); +