Acme-Yoda
view release on metacpan or search on metacpan
#!/usr/bin/perl -w
use strict;
use lib qw( ./lib/ );
use Acme::Yoda;
use Test::More tests => 16;
ok(my $yoda = Acme::Yoda->new(), 'Create Yoda object');
isa_ok($yoda,'Acme::Yoda', '... object ');
my $sentence = 'I am ok';
my $translated = 'Ok I am';
ok(my $rtn = $yoda->yoda($sentence), '... translate');
is($rtn,$translated, '... does translation match');
( run in 0.225 second using v1.01-cache-2.11-cpan-87723dcf8b7 )