From: Graham Knop Date: Thu, 23 Jul 2020 23:20:53 +0000 (+0200) Subject: move pod tests to xt X-Git-Tag: v0.35~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-ConfigLoader.git;a=commitdiff_plain;h=599ae2385cf3a9e5f71dbf049b7a4ae3bf98a178 move pod tests to xt --- diff --git a/Makefile.PL b/Makefile.PL index fd76aad..6813fab 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -25,6 +25,8 @@ my %META = ( }, develop => { requires => { + 'Test::Pod' => '1.00', + 'Test::Pod::Coverage' => '1.00', }, }, }, diff --git a/t/98-pod_coverage.t b/t/98-pod_coverage.t deleted file mode 100644 index 45298e0..0000000 --- a/t/98-pod_coverage.t +++ /dev/null @@ -1,5 +0,0 @@ -use Test::More; -eval "use Test::Pod::Coverage 1.00"; -plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" - if $@; -all_pod_coverage_ok(); diff --git a/t/99-pod.t b/t/99-pod.t deleted file mode 100644 index 437887a..0000000 --- a/t/99-pod.t +++ /dev/null @@ -1,4 +0,0 @@ -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(); diff --git a/xt/pod-coverage.t b/xt/pod-coverage.t new file mode 100644 index 0000000..6ccd0e4 --- /dev/null +++ b/xt/pod-coverage.t @@ -0,0 +1,6 @@ +use strict; +use warnings; + +use Test::More; +use Test::Pod::Coverage 1.00; +all_pod_coverage_ok(); diff --git a/xt/pod.t b/xt/pod.t new file mode 100644 index 0000000..18e9f1d --- /dev/null +++ b/xt/pod.t @@ -0,0 +1,6 @@ +use strict; +use warnings; + +use Test::More; +use Test::Pod 1.00; +all_pod_files_ok();