aboutsummaryrefslogtreecommitdiffstats
path: root/test/pod_coverage.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2012-02-16 16:24:51 +0100
committerMatěj Cepl <mcepl@redhat.com>2012-02-16 16:24:51 +0100
commit7d08baca38827b59af9592e415bc4778fb8c4958 (patch)
treef6ad4a356235367d6a741d197e04f619f65c70a2 /test/pod_coverage.py
parentd7e73ec4c238d0eb1c5493bb90c022d683123296 (diff)
downloadyamlish-7d08baca38827b59af9592e415bc4778fb8c4958.tar.gz
Start building tests.
Diffstat (limited to 'test/pod_coverage.py')
-rw-r--r--test/pod_coverage.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/pod_coverage.py b/test/pod_coverage.py
new file mode 100644
index 0000000..c412996
--- /dev/null
+++ b/test/pod_coverage.py
@@ -0,0 +1,9 @@
+#!perl -T
+
+use Test::More;
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all =>
+ "Test::Pod::Coverage 1.04 required for testing POD coverage"
+ if $@;
+all_pod_coverage_ok(
+ { private => [ qr{^BUILD|DEMOLISH|AUTOMETHOD|START$}, qr{^_} ] } );