The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Test::More;

unless ( $ENV{RELEASE_TESTING} ) {
	plan skip_all => 'Release test, set $ENV{RELEASE_TESTING} to run';
}

## no critic
eval q{use Test::Version 1.003001 qw( version_all_ok ), {
        is_strict => 0,
        has_version => 1,
        consistent => 1,
      };
 };
plan skip_all => "Test::Version 1.003001 required for testing version numbers"

	if $@;
version_all_ok();
done_testing;