From: Graham Knop Date: Tue, 19 Apr 2016 12:14:06 +0000 (-0400) Subject: move pod test to xt X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f2f4e3b2b1ea6ced236a38a4f010cbb3c28c97b2;p=gitmo%2FClass-C3-XS.git move pod test to xt --- diff --git a/Makefile.PL b/Makefile.PL index 2f1105b..98be8df 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -19,6 +19,11 @@ my %META = ( 'perl' => 5.006, }, }, + develop => { + requires => { + 'Test::Pod' => 1.14, + }, + }, }, resources => { repository => { diff --git a/t/pod.t b/t/pod.t deleted file mode 100644 index 4ae1af3..0000000 --- a/t/pod.t +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/perl - -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/pod.t b/xt/pod.t new file mode 100644 index 0000000..2eb7dc2 --- /dev/null +++ b/xt/pod.t @@ -0,0 +1,8 @@ +use strict; +use warnings; + +use Test::More; + +use Test::Pod 1.14; + +all_pod_files_ok();