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::Bitly') or BAIL_OUT("Can't use module"); }

can_ok('WWW::Shorten::Bitly', qw(new makeashorterlink makealongerlink));
can_ok('WWW::Shorten::Bitly', qw(access_token client_id client_secret));
can_ok('WWW::Shorten::Bitly', qw(password username));
can_ok('main', qw(makeashorterlink makealongerlink));

done_testing();