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

BEGIN {
    use_ok('Unicorn::Manager::CLI') || print "Bail out!";
    use_ok( 'Unicorn::Manager::Version' || print "No version information!" );
}

my $v = Unicorn::Manager::Version->new;

diag( 'Testing Unicorn::Manager::CLI ' . $v->get . ", Perl $], $^X" );

done_testing;