The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
use 5.006;
use strict;
use warnings;
use Test::Tester tests => 8;
use Test::More;
use Test::Version qw( version_ok );

my $ret;
check_test(
	sub {
		$ret = version_ok( 'corpus/fail/FooBarBaz.pm' );
	},
	{
		ok => 0,
		name => q[check version in 'corpus/fail/FooBarBaz.pm'],
		diag => qq[The version 'v.Inf' found in 'corpus/fail/FooBarBaz.pm' is invalid.],
	},
	'version invalid'
);

ok !$ret, "version_ok() returned false on fail";