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

use strict;
use warnings;
use Test::More;

BEGIN { use_ok('WWW::Shorten::VGd') or BAIL_OUT("Can't use module"); }

can_ok('WWW::Shorten::VGd', qw(makeashorterlink makealongerlink));
can_ok('main', qw(makeashorterlink makealongerlink));

done_testing();