summaryrefslogtreecommitdiff
path: root/xt/00-author-minver.t
diff options
context:
space:
mode:
Diffstat (limited to 'xt/00-author-minver.t')
-rw-r--r--xt/00-author-minver.t33
1 files changed, 33 insertions, 0 deletions
diff --git a/xt/00-author-minver.t b/xt/00-author-minver.t
new file mode 100644
index 0000000..4dfb876
--- /dev/null
+++ b/xt/00-author-minver.t
@@ -0,0 +1,33 @@
+#!/usr/bin/perl
+
+# Test that our declared minimum Perl version matches our syntax
+use strict;
+BEGIN {
+ $| = 1;
+ $^W = 1;
+}
+
+my @MODULES = (
+ 'Perl::MinimumVersion 1.20',
+ 'Test::MinimumVersion 0.008',
+);
+
+# Don't run tests during end-user installs
+use Test::More;
+unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) {
+ plan( skip_all => "Author tests not required for installation" );
+}
+
+# Load the testing modules
+foreach my $MODULE ( @MODULES ) {
+ eval "use $MODULE";
+ if ( $@ ) {
+ $ENV{RELEASE_TESTING}
+ ? die( "Failed to load required release-testing module $MODULE" )
+ : plan( skip_all => "$MODULE not available for testing" );
+ }
+}
+
+all_minimum_version_from_metayml_ok();
+
+1;