1#!perl -T
2
3use strict;
4use warnings;
5
6use Test::More;
7
8my $module = 'Test::Pod 1.14';
9
10if ( eval "use $module; 1;" ) { ## no critic (ProhibitStringyEval)
11    all_pod_files_ok();
12}
13else {
14    plan skip_all => "$module required for testing POD";
15}
16