From: Mischa POSLAWSKY Date: Tue, 22 Nov 2022 00:58:15 +0000 (+0100) Subject: t/pod: validate documentation syntax X-Git-Tag: v1.10~32 X-Git-Url: http://git.shiar.nl/barcat.git/commitdiff_plain/c75806dd84692e5729c4605eec15e65996ac760f t/pod: validate documentation syntax --- diff --git a/t/pod.t b/t/pod.t new file mode 100755 index 0000000..4e926a2 --- /dev/null +++ b/t/pod.t @@ -0,0 +1,10 @@ +#!/usr/bin/env perl +use 5.012; +use warnings; +use Test::More; + +eval 'use Test::Pod 1.00'; +plan skip_all => "Test::Pod required to test documentation" if $@; + +plan tests => 1; +pod_file_ok('pod syntax', 'barcat');