summaryrefslogtreecommitdiff
path: root/t/release-check-manifest.t
diff options
context:
space:
mode:
Diffstat (limited to 't/release-check-manifest.t')
-rw-r--r--t/release-check-manifest.t24
1 files changed, 24 insertions, 0 deletions
diff --git a/t/release-check-manifest.t b/t/release-check-manifest.t
new file mode 100644
index 0000000..f0c12c7
--- /dev/null
+++ b/t/release-check-manifest.t
@@ -0,0 +1,24 @@
+#!perl -T
+
+BEGIN {
+ unless ($ENV{RELEASE_TESTING}) {
+ print qq{1..0 # SKIP these tests are for release candidate testing\n};
+ exit
+ }
+}
+
+
+BEGIN {
+ unless ($ENV{RELEASE_TESTING}) {
+ require Test::More;
+ Test::More::plan(skip_all => 'these tests are for release candidate testing');
+ }
+}
+
+use Test::More;
+
+eval "use Test::CheckManifest 1.24";
+plan skip_all => "Test::CheckManifest 1.24 required for testing MANIFEST"
+ if $@;
+
+ok_manifest();