From ddbc384b7a0e4a98ce66736d6d78febede2f6017 Mon Sep 17 00:00:00 2001 From: Tiago Peczenyj Date: Fri, 29 Dec 2023 16:39:03 +0100 Subject: [PATCH] add pod tests --- Makefile.PL | 1 + t/99-pod.t | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 t/99-pod.t diff --git a/Makefile.PL b/Makefile.PL index 6136110..67c4b36 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -21,6 +21,7 @@ WriteMakefile( TEST_REQUIRES => { 'Test::Exception' => 0.43, 'Test::More' => 0.94, + 'Test::Pod' => 0, }, ( eval { ExtUtils::MakeMaker->VERSION(6.46) } ? ( META_MERGE => { diff --git a/t/99-pod.t b/t/99-pod.t new file mode 100644 index 0000000..437887a --- /dev/null +++ b/t/99-pod.t @@ -0,0 +1,4 @@ +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();