From c75806dd84692e5729c4605eec15e65996ac760f Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Tue, 22 Nov 2022 01:58:15 +0100 Subject: [PATCH] t/pod: validate documentation syntax --- t/pod.t | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 t/pod.t 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'); -- 2.30.0