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

use strict;
use warnings;
use Test::More tests => 3;

sub msg { "*** $_[0] MUST BE INSTALLED BEFORE PROCEEDING ***\n"; }

BEGIN { use_ok $_ or BAIL_OUT msg $_ for qw/Scalar::Util Encode B/; }