The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!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();