21 lines
430 B
Perl
21 lines
430 B
Perl
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Test::More;
|
|
use DDG::Test::Goodie;
|
|
|
|
zci answer_type => 'rafl';
|
|
zci is_cached => 0;
|
|
|
|
ddg_goodie_test(
|
|
[qw(
|
|
DDG::Goodie::Rafl
|
|
)],
|
|
'rafl' => test_zci(qr/rafl is so everywhere, .+/),
|
|
'rafl is everywhere' => test_zci(qr/rafl is so everywhere, .+/),
|
|
'where is rafl?' => test_zci(qr/rafl is so everywhere, .+/),
|
|
);
|
|
|
|
done_testing;
|