26 lines
657 B
Perl
26 lines
657 B
Perl
|
#!/usr/bin/env perl
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
use Test::More;
|
||
|
use DDG::Test::Goodie;
|
||
|
|
||
|
zci answer_type => "constants";
|
||
|
zci is_cached => 1;
|
||
|
|
||
|
ddg_goodie_test(
|
||
|
[qw( DDG::Goodie::Constants )],
|
||
|
"Hardy Ramanujan number" => test_zci(
|
||
|
'Hardy Ramanujan number 1729 = 1<sup>3</sup> + 12<sup>3</sup> = 9<sup>3</sup> + 10<sup>3</sup>',
|
||
|
structured_answer => {
|
||
|
input => [],
|
||
|
operation => 'constants',
|
||
|
result => "Hardy Ramanujan number 1729 = 1<sup>3</sup> + 12<sup>3</sup> = 9<sup>3</sup> + 10<sup>3</sup>",
|
||
|
}
|
||
|
),
|
||
|
"How old is my grandma?" => undef,
|
||
|
"why?" => undef,
|
||
|
);
|
||
|
|
||
|
done_testing;
|