summaryrefslogtreecommitdiff
path: root/rt/t/pod.t
diff options
context:
space:
mode:
Diffstat (limited to 'rt/t/pod.t')
-rw-r--r--rt/t/pod.t9
1 files changed, 6 insertions, 3 deletions
diff --git a/rt/t/pod.t b/rt/t/pod.t
index 697a30b44..1283cfe6c 100644
--- a/rt/t/pod.t
+++ b/rt/t/pod.t
@@ -2,6 +2,9 @@ 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( all_pod_files("lib","docs","etc","bin","sbin"));
+use Test::Pod;
+all_pod_files_ok(
+ all_pod_files("lib","devel","docs","etc","bin","sbin"),
+ <docs/UPGRADING*>,
+ <devel/docs/UPGRADING*>,
+);