zeroclickinfo-goodies/t/Scramble.t

29 lines
618 B
Perl
Raw Normal View History

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Deep;
use DDG::Test::Goodie;
zci answer_type => "scramble";
2015-11-30 09:17:04 -08:00
zci is_cached => 0;
ddg_goodie_test(
[qw( DDG::Goodie::Scramble )],
'scramble of filter' => test_zci(
'Scramble of filter',
structured_answer => {
2015-11-30 07:44:13 -08:00
input => ['filter'],
operation => 'Scramble of',
result => ignore(),
2015-11-30 07:44:13 -08:00
}
),
'scramble of' => undef,
'Scramble for' => undef,
'Scrambles for ""' => undef,
'Scrambles for "867-5309"' => undef,
);
2016-05-16 06:18:04 -07:00
done_testing;