From 96cf146513afbaf6f2842c8c373c0c562fa937f1 Mon Sep 17 00:00:00 2001 From: Guillaume Rousse Date: Tue, 22 May 2012 21:26:57 +0000 Subject: Initial import NB: SVN to Git Migration corrected initial import issues by squashing all commits relating to that into this initial commit. --- t/pod.t | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 t/pod.t (limited to 't/pod.t') diff --git a/t/pod.t b/t/pod.t new file mode 100755 index 0000000..9a60e73 --- /dev/null +++ b/t/pod.t @@ -0,0 +1,14 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use Test::More; +use English qw(-no_match_vars); + +eval { require Test::Pod; }; +plan(skip_all => 'Test::Pod required') if $EVAL_ERROR; + +Test::Pod->import(); + +all_pod_files_ok(); -- cgit v1.2.1