More tests are a good thing
[p5sagit/Promulger.git] / t / manifest.t
diff --git a/t/manifest.t b/t/manifest.t
new file mode 100644 (file)
index 0000000..52ca87d
--- /dev/null
@@ -0,0 +1,12 @@
+#!/usr/bin/perl
+use strictures 1;
+use autodie;
+use Test::Most;
+
+unless ( $ENV{RELEASE_TESTING} ) {
+    plan( skip_all => "Author tests not required for installation" );
+}
+
+eval "use Test::CheckManifest 0.9";
+plan skip_all => "Test::CheckManifest 0.9 required" if $@;
+ok_manifest();