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

use strict;
use warnings;

use Test::More tests => 1;
use Module::ScanDeps ();

{
my @array=sort (@{Module::ScanDeps::_get_preload('Event.pm')});
ok(grep {$_ eq 'Event/idle.pm'} @array) or diag(join(', ',@array));
}