zeroclickinfo-goodies/t/ValarMorghulis.t

32 lines
651 B
Perl
Raw Permalink Normal View History

2014-08-19 05:55:10 -07:00
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Deep;
2014-08-19 05:55:10 -07:00
use DDG::Test::Goodie;
2014-10-07 02:12:00 -07:00
zci answer_type => 'valar_morghulis';
zci is_cached => 1;
2014-08-19 05:55:10 -07:00
ddg_goodie_test(
2014-10-07 02:12:00 -07:00
['DDG::Goodie::ValarMorghulis'],
'valar morghulis' => test_zci(
'Valar dohaeris',
structured_answer => {
data => {
title => 'Valar dohaeris',
subtitle => 'Code phrase: Valar morghulis'
},
templates => {
group => 'text'
}
2014-10-07 02:12:00 -07:00
}
),
2014-08-19 05:55:10 -07:00
'what is valar morghulis' => undef,
2014-10-28 11:36:15 -07:00
'valar morghulis meaning' => undef,
2014-08-19 05:55:10 -07:00
);
2016-05-16 06:18:04 -07:00
done_testing;