From: Graham Knop Date: Sun, 9 Apr 2017 13:11:36 +0000 (+0200) Subject: move pod tests to xt/ X-Git-Tag: v0.31~10 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=commitdiff_plain;h=df8a40c5ea67b2d8a89d654bdda7c538afe8f6b6;hp=e0186698ea45049a14a46eeffeb648a4b6092785 move pod tests to xt/ --- diff --git a/t/pod-coverage.t b/t/pod-coverage.t deleted file mode 100644 index 0ae970f..0000000 --- a/t/pod-coverage.t +++ /dev/null @@ -1,9 +0,0 @@ -use strict; -use warnings; -use Test::More; - -eval "use Test::Pod::Coverage 1.04"; - -plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" - if $@; -all_pod_coverage_ok(); diff --git a/t/pod.t b/t/pod.t deleted file mode 100644 index 4840188..0000000 --- a/t/pod.t +++ /dev/null @@ -1,8 +0,0 @@ -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(); diff --git a/xt/author/pod-coverage.t b/xt/author/pod-coverage.t new file mode 100644 index 0000000..643d46c --- /dev/null +++ b/xt/author/pod-coverage.t @@ -0,0 +1,7 @@ +use strict; +use warnings; +use Test::More; + +use Test::Pod::Coverage 1.04; + +all_pod_coverage_ok; diff --git a/xt/author/pod.t b/xt/author/pod.t new file mode 100644 index 0000000..a82e3a2 --- /dev/null +++ b/xt/author/pod.t @@ -0,0 +1,7 @@ +use strict; +use warnings; +use Test::More; + +use Test::Pod 1.14; + +all_pod_files_ok;