release tests using Test::Pod and Test::Pod::Coverage
[gitmo/MooseX-ConfigFromFile.git] / t / release-pod-syntax.t
diff --git a/t/release-pod-syntax.t b/t/release-pod-syntax.t
new file mode 100644 (file)
index 0000000..7f1e5ca
--- /dev/null
@@ -0,0 +1,14 @@
+use strict;
+use warnings;
+use Test::More;
+
+BEGIN {
+  unless ($ENV{RELEASE_TESTING}) {
+    plan skip_all => 'these tests are for release candidate testing';
+  }
+}
+
+eval "use Test::Pod 1.41";
+plan skip_all => "Test::Pod 1.41 required for testing POD" if $@;
+
+all_pod_files_ok();