/Module-Math-Depends-0.02/t/99_pmv.t
Perl | 27 lines | 17 code | 6 blank | 4 comment | 3 complexity | 9827cb362cb7aefe36e3decc6cf0850f MD5 | raw file
Possible License(s): AGPL-1.0
1#!/usr/bin/perl
2
3# Test that our declared minimum Perl version matches our syntax
4
5use strict;
6BEGIN {
7 $| = 1;
8 $^W = 1;
9}
10
11my $MODULE = 'Test::MinimumVersion 0.008';
12
13# Don't run tests for installs
14use Test::More;
15unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) {
16 plan( skip_all => "Author tests not required for installation" );
17}
18
19# Load the testing module
20eval "use $MODULE";
21if ( $@ ) {
22 $ENV{RELEASE_TESTING}
23 ? die( "Failed to load required release-testing module $MODULE" )
24 : plan( skip_all => "$MODULE not available for testing" );
25}
26
27all_minimum_version_from_metayml_ok();