aboutsummaryrefslogtreecommitdiffstats
path: root/t/pod-coverage.t
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@mageia.org>2012-05-22 21:26:57 +0000
committerGuillaume Rousse <guillomovitch@mageia.org>2012-05-22 21:26:57 +0000
commit96cf146513afbaf6f2842c8c373c0c562fa937f1 (patch)
tree948bc4170b76e61811982581170460d02a73f625 /t/pod-coverage.t
downloadperl-Parse-EDID-96cf146513afbaf6f2842c8c373c0c562fa937f1.tar
perl-Parse-EDID-96cf146513afbaf6f2842c8c373c0c562fa937f1.tar.gz
perl-Parse-EDID-96cf146513afbaf6f2842c8c373c0c562fa937f1.tar.bz2
perl-Parse-EDID-96cf146513afbaf6f2842c8c373c0c562fa937f1.tar.xz
perl-Parse-EDID-96cf146513afbaf6f2842c8c373c0c562fa937f1.zip
Initial import
NB: SVN to Git Migration corrected initial import issues by squashing all commits relating to that into this initial commit.
Diffstat (limited to 't/pod-coverage.t')
-rwxr-xr-xt/pod-coverage.t14
1 files changed, 14 insertions, 0 deletions
diff --git a/t/pod-coverage.t b/t/pod-coverage.t
new file mode 100755
index 0000000..f135c3e
--- /dev/null
+++ b/t/pod-coverage.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::Coverage; };
+plan(skip_all => 'Test::Pod::Coverage required') if $EVAL_ERROR;
+
+
+Test::Pod::Coverage->import();
+all_pod_coverage_ok();