The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
BEGIN { use Test::More; };
my @mods = qw(
	Exception::ThrowUnless
);
plan tests => 0+@mods;
for ( @mods ) {
	use_ok($_);
};
#########################