The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -T

use strict;
use warnings;

use Test::Builder::Tester;
use Test::Dist::VersionSync;
use Test::FailWarnings -allow_deps => 1;
use Test::More tests => 1;


test_out( '1..3')
	if $Test::More::VERSION >= 1.005000005;
$Test::More::VERSION >= 0.9804 && $Test::More::VERSION < 1.005
	? test_out( "ok 1 - 'modules list' isa 'ARRAY'" )
	: test_out( "ok 1 - modules list isa ARRAY" );
test_out( 'ok 2 # skip No module found in the distribution.' );
test_out( 'ok 3 # skip No module found in the distribution.' );

Test::Dist::VersionSync::ok_versions(
	modules => [],
);

test_test( "ok_versions() detects empty list." );