1use strict;
2use warnings;
3
4use Test::More;
5## no critic
6eval q{use Test::Version 1.003001 qw( version_all_ok ), {
7                is_strict   => 0,
8                has_version => 1,
9        };
10};
11plan skip_all => 'Test::Version 1.003001 required for testing version numbers' if $@;
12version_all_ok();
13done_testing;
14
15