2013-05-09 10:02:17 -07:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use Test::More;
|
2016-05-16 06:07:57 -07:00
|
|
|
use Test::Deep;
|
2013-05-09 10:02:17 -07:00
|
|
|
use DDG::Test::Goodie;
|
|
|
|
|
|
|
|
zci answer_type => "factors";
|
2014-10-06 11:42:55 -07:00
|
|
|
zci is_cached => 1;
|
2013-05-09 10:02:17 -07:00
|
|
|
|
2016-05-15 10:38:30 -07:00
|
|
|
sub build_test
|
|
|
|
{
|
|
|
|
my ($text_answer, $input, $answer) = @_;
|
|
|
|
return test_zci($text_answer, structured_answer =>{
|
|
|
|
data => {
|
|
|
|
title => $answer,
|
|
|
|
subtitle => "Factors of: $input"
|
|
|
|
},
|
|
|
|
templates => {
|
|
|
|
group => 'text'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-05-09 10:02:17 -07:00
|
|
|
ddg_goodie_test(
|
2014-10-06 11:42:55 -07:00
|
|
|
[qw( DDG::Goodie::Factors)],
|
2016-05-15 10:38:30 -07:00
|
|
|
'30 factors' => build_test('Factors of 30: 1, 2, 3, 5, 6, 10, 15, 30', '30', '1, 2, 3, 5, 6, 10, 15, 30'),
|
|
|
|
'factors of 72' => build_test('Factors of 72: 1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 36, 72', '72', '1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 36, 72'),
|
|
|
|
'factors of 30' => build_test('Factors of 30: 1, 2, 3, 5, 6, 10, 15, 30', '30', '1, 2, 3, 5, 6, 10, 15, 30'),
|
|
|
|
'72 factors' => build_test('Factors of 72: 1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 36, 72', '72', '1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 36, 72'),
|
2013-05-09 10:02:17 -07:00
|
|
|
);
|
|
|
|
|
2016-05-16 06:18:04 -07:00
|
|
|
done_testing;
|