diff --git a/t/04-pod.t b/t/04-pod.t
new file mode 100644
index 0000000000000000000000000000000000000000..3ede1544bc57967bb4829bef466cf39ee91a4db5
--- /dev/null
+++ b/t/04-pod.t
@@ -0,0 +1,9 @@
+use strict;
+use warnings;
+use Test::More;
+
+eval 'use Test::Pod 1.00';
+
+plan skip_all => 'Test::Pod 1.00 required for testing POD' if $@;
+
+all_pod_files_ok();
diff --git a/t/05-pod-coverage.t b/t/05-pod-coverage.t
new file mode 100644
index 0000000000000000000000000000000000000000..a71fd673febb2852581d634d2757c963758ac009
--- /dev/null
+++ b/t/05-pod-coverage.t
@@ -0,0 +1,11 @@
+use strict;
+use warnings;
+use Test::More;
+
+eval 'use Test::Pod::Coverage';
+
+plan skip_all => 'Test::Pod::Coverage required for testing pod coverage' if $@;
+ 
+plan tests => 1;
+
+pod_coverage_ok('RedMiner::API', 'RedMiner::API POD ok');