2013-03-01 21:02:38 -08:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use Test::More;
|
|
|
|
use DDG::Test::Goodie;
|
|
|
|
|
|
|
|
zci answer_type => 'randagram';
|
|
|
|
zci is_cached => 0;
|
|
|
|
|
|
|
|
ddg_goodie_test(
|
|
|
|
[qw(DDG::Goodie::Randagram)],
|
2014-02-10 13:24:52 -08:00
|
|
|
'randagram algorithm' => test_zci(qr/Randagram of "algorithm": [algorithm]/),
|
|
|
|
'randagram jazz hands' => test_zci(qr/Randagram of "jazz hands": [jazz hands]/),
|
|
|
|
);
|
2013-03-01 21:02:38 -08:00
|
|
|
|
|
|
|
done_testing;
|