summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--META.json3
-rw-r--r--cpanfile1
-rw-r--r--t/05_pod.t8
3 files changed, 11 insertions, 1 deletions
diff --git a/META.json b/META.json
index df1c21e..f4e8529 100644
--- a/META.json
+++ b/META.json
@@ -58,7 +58,8 @@
"Test::Differences" : "0",
"Test::Exception" : "0",
"Test::MockObject" : "0",
- "Test::More" : "0.98"
+ "Test::More" : "0.98",
+ "Test::Pod" : "0"
}
}
},
diff --git a/cpanfile b/cpanfile
index fb3e50b..ea9b833 100644
--- a/cpanfile
+++ b/cpanfile
@@ -12,5 +12,6 @@ on 'test' => sub {
requires 'Test::MockObject';
requires 'Test::Exception';
requires 'Test::Differences';
+ requires 'Test::Pod';
};
diff --git a/t/05_pod.t b/t/05_pod.t
new file mode 100644
index 0000000..de15747
--- /dev/null
+++ b/t/05_pod.t
@@ -0,0 +1,8 @@
+use strict;
+use warnings;
+
+use Test::More;
+use Test::Pod;
+
+my @poddirs = qw( blib script );
+all_pod_files_ok( all_pod_files( @poddirs ) );