move pod tests to xt
[gitmo/MooseX-ClassAttribute.git] / xt / pod.t
diff --git a/xt/pod.t b/xt/pod.t
new file mode 100644 (file)
index 0000000..8c9830b
--- /dev/null
+++ b/xt/pod.t
@@ -0,0 +1,13 @@
+use strict;
+use warnings;
+
+use Test::More;
+
+
+plan skip_all => 'This test is only run for the module author'
+    unless -d '.git' || $ENV{IS_MAINTAINER};
+
+eval "use Test::Pod 1.14";
+plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
+
+all_pod_files_ok();