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

ok(abbreviationOf('Dave','David'),'Dave -> David');
ok(abbreviationOf('Mike','Michael'),'Mike -> Michael');
ok(abbreviationOf('Bella','Belinda'),'Bella -> Belinda');
ok(!abbreviationOf('John','Bob'),'John !> Bob');


done_testing;