diff --git a/MANIFEST b/MANIFEST index f35e482..d63e311 100644 --- a/MANIFEST +++ b/MANIFEST @@ -61,5 +61,6 @@ t/49_lc_subset.t t/50_lcf_subset.t t/90_oo_errors.t t/91_func_errors.t +t/92_pod.t t/IO/CaptureOutput.pm t/Test/ListCompareSpecial.pm diff --git a/Makefile.PL b/Makefile.PL index 93a7875..ea69ef7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -28,4 +28,5 @@ WriteMakefile( }, }, })), + ($mm_ver < 6.48 ? () : (MIN_PERL_VERSION => 5.006)), ); diff --git a/t/92_pod.t b/t/92_pod.t new file mode 100644 index 0000000..188dcf4 --- /dev/null +++ b/t/92_pod.t @@ -0,0 +1,8 @@ +# perl +# 92_pod.t +use strict; +use warnings; +use Test::More; +eval "use Test::Pod"; +plan skip_all => "Test::Pod required for testing POD" if $@; +all_pod_files_ok();