denny/ShinyCMS

View on GitHub
t/meta/01_POD.t

Summary

Maintainability
Test Coverage
use strict;
use warnings;

use Test::More;

plan skip_all => 'Set TEST_POD to enable this test' unless $ENV{TEST_POD};

eval { use Test::Pod };
plan skip_all => 'Test::Pod required' if $@;

all_pod_files_ok();

done_testing();