zeroclickinfo-goodies/t/Rot13.t

21 lines
414 B
Perl
Raw Normal View History

2012-05-05 10:43:57 -07:00
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
zci answer_type => 'rot13';
zci is_cached => 1;
ddg_goodie_test(
[qw(
DDG::Goodie::Rot13
)],
'rot13 This is a test' => test_zci('ROT13: Guvf vf n grfg'),
'rot13 thirteen' => test_zci('ROT13: guvegrra'),
'rot13 guvegrra' => test_zci('ROT13: thirteen'),
2012-05-05 10:43:57 -07:00
);
done_testing;