Conflicts:
	dist.ini
master
Dylan Lloyd 2013-01-15 21:04:51 -05:00
commit 6b0d754c61
1 changed files with 26 additions and 0 deletions

26
t/rafl.t Normal file
View File

@ -0,0 +1,26 @@
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
zci is_cached => 0;
zci answer_type => 'rafl';
ddg_goodie_test(
[qw(
DDG::Goodie::Rafl
)],
'rafl' => test_zci(
qr/rafl.*everywhere/i,
),
'!rafl' => test_zci(
qr/rafl.*everywhere/i,
),
'rafl everywhere' => test_zci(
qr/rafl.*everywhere/i,
),
);
done_testing;