From b7724a1c833ba381a05bc4fed54aebbcd7f59c9c Mon Sep 17 00:00:00 2001 From: Andy Jack Date: Fri, 31 Jul 2015 20:50:45 -0400 Subject: [PATCH] Add author test for pod in Kate.pm --- xt/author/pod.t | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 xt/author/pod.t diff --git a/xt/author/pod.t b/xt/author/pod.t new file mode 100644 index 0000000..0ea9f76 --- /dev/null +++ b/xt/author/pod.t @@ -0,0 +1,11 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use Test::More; +eval 'use Test::Pod 1.00'; +plan skip_all => 'Test::Pod 1.00 required for testing POD' if $@; + +pod_file_ok('lib/Syntax/Highlight/Engine/Kate.pm'); +done_testing();