summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@cpan.org>2006-08-22 12:51:11 +0000
committerRicardo Signes <rjbs@cpan.org>2006-08-22 12:51:11 +0000
commit3fccad2c88475aad6a6376ac931d65cbb48ff6fa (patch)
tree2d088ff143557f503262abb56db3b9dcc5e61f31 /t
parentd114a88c0df9c8978d57ddc9bd48c8d5b4fb8281 (diff)
r24827@knight: rjbs | 2006-08-22 08:27:45 -0400
tests
Diffstat (limited to 't')
-rw-r--r--t/pod-coverage.t13
-rw-r--r--t/pod.t6
2 files changed, 19 insertions, 0 deletions
diff --git a/t/pod-coverage.t b/t/pod-coverage.t
new file mode 100644
index 0000000..4e065a1
--- /dev/null
+++ b/t/pod-coverage.t
@@ -0,0 +1,13 @@
+#!perl -T
+
+use Test::More;
+eval "use Test::Pod::Coverage 1.08";
+plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage"
+ if $@;
+
+all_pod_coverage_ok({
+ coverage_class => 'Pod::Coverage::CountParents',
+ trustme => [
+ qw(as_string construct get_body get_header set_body set_header target)
+ ],
+});
diff --git a/t/pod.t b/t/pod.t
new file mode 100644
index 0000000..976d7cd
--- /dev/null
+++ b/t/pod.t
@@ -0,0 +1,6 @@
+#!perl -T
+
+use Test::More;
+eval "use Test::Pod 1.14";
+plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
+all_pod_files_ok();