zeroclickinfo-goodies/t/Base64.t

21 lines
469 B
Perl
Raw Normal View History

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
2012-05-29 15:40:32 -07:00
zci answer_type => 'base64_conversion';
zci is_cached => 1;
ddg_goodie_test(
[qw(
2012-05-29 15:40:32 -07:00
DDG::Goodie::Base64
)],
2012-05-29 15:40:32 -07:00
'base64 encode foo' => test_zci('Base64 encoded: Zm9v'),
"base64 encode this text" => test_zci("Base64 encoded: dGhpcyB0ZXh0"),
"base64 decode dGhpcyB0ZXh0" => test_zci("Base64 decoded: this text"),
);
done_testing;