t/pod: validate documentation syntax
authorMischa POSLAWSKY <perl@shiar.org>
Tue, 22 Nov 2022 00:58:15 +0000 (01:58 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Tue, 22 Nov 2022 23:06:47 +0000 (00:06 +0100)
t/pod.t [new file with mode: 0755]

diff --git a/t/pod.t b/t/pod.t
new file mode 100755 (executable)
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');