The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 6.t'

#########################

# In this test we'll test whether fromstring() works.

use Test;
BEGIN { plan tests => 4 };
use Convert::Transcribe;
ok(1);

my $t = new Convert::Transcribe;
ok(1);
$t->fromstring(<<"EOF");
tz'     c
tz      z
t'      t
t       d
u       wu    < \$
i       yi    < \$
EOF
ok(1);
ok($t->transcribe("tz'u uta"), "cu wuda");