From: Graham Knop Date: Thu, 13 Aug 2020 08:58:28 +0000 (+0200) Subject: move pod tests to xt X-Git-Tag: v0.18~10 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Session-State-Cookie.git;a=commitdiff_plain;h=f04bb39a7508600a63457dc56ed046e4a3011de7 move pod tests to xt --- diff --git a/Makefile.PL b/Makefile.PL index a032325..32135db 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -27,6 +27,8 @@ my %META = ( }, develop => { requires => { + 'Test::Pod' => '1.14', + 'Test::Pod::Coverage' => '1.04', }, }, }, diff --git a/t/02pod.t b/t/02pod.t deleted file mode 100644 index 1647794..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}; - -all_pod_files_ok(); diff --git a/t/03podcoverage.t b/t/03podcoverage.t deleted file mode 100644 index d91be5e..0000000 --- a/t/03podcoverage.t +++ /dev/null @@ -1,7 +0,0 @@ -use Test::More; - -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}; - -all_pod_coverage_ok(); diff --git a/xt/pod.t b/xt/pod.t new file mode 100644 index 0000000..0eeb90e --- /dev/null +++ b/xt/pod.t @@ -0,0 +1,5 @@ +use strict; +use warnings; +use Test::More; +use Test::Pod 1.14; +all_pod_files_ok(); diff --git a/xt/podcoverage.t b/xt/podcoverage.t new file mode 100644 index 0000000..56c0918 --- /dev/null +++ b/xt/podcoverage.t @@ -0,0 +1,6 @@ +use strict; +use warnings; +use Test::More; +use Test::Pod::Coverage 1.04; + +all_pod_coverage_ok();