zeroclickinfo-goodies/t/RandomName.t

23 lines
502 B
Perl
Raw Normal View History

#! /usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
zci answer_type => 'rand';
zci is_cached => 0;
ddg_goodie_test(
[
'DDG::Goodie::RandomName'
],
'random Name' => test_zci (qr/\w\w \(random\)/),
'random name' => test_zci (qr/\w\w \(random\)/),
2014-10-28 11:36:15 -07:00
'random person' =>
test_zci (qr/Name: [\w\s]+\nGender: (?:Male|Female)\nDate of birth: \d{4}\-\d{2}\-\d{2}\nAge: \d+/,
heading => 'Random Person'),
);
done_testing;