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

use lib qw(./lib ./t/lib);
use List::Util ();
use List::MoreUtils ();
use Hash::Util ();
use Scalar::Util ();

use MyUtil qw/:list/;
no strict 'refs';

my %already_defined;
foreach (@List::Util::EXPORT_OK) {
  ok(defined &{$_} , $_) and $already_defined{$_}++;
}

foreach (@List::MoreUtils::EXPORT_OK) {
  ok(! defined &{$_} , $_) if not $already_defined{$_};
}

foreach (@Scalar::Util::EXPORT_OK) {
  ok(! defined &{$_} , $_) if not $already_defined{$_};
}

foreach (@Hash::Util::EXPORT_OK) {
  no strict 'refs';
  ok(! defined &{$_} , $_) if defined &{'Hash::Util::' . $_};
}