The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::More tests => 2;
use String::Alignment qw(do_alignment);

BEGIN {
my @result = split("\t",do_alignment("WRITERS", "VINTNER"));
is($result[0],"VINTNER-");
is($result[1],"WRIT-ERS");
}