zeroclickinfo-goodies/t/SumOfNaturalNumbers.t

31 lines
912 B
Perl
Raw Normal View History

2014-01-20 14:32:51 -08:00
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Deep;
2014-01-20 14:32:51 -08:00
use DDG::Test::Goodie;
zci is_cached => 1;
zci answer_type => 'sum';
ddg_goodie_test(
[
'DDG::Goodie::SumOfNaturalNumbers'
],
2014-04-02 09:31:24 -07:00
'sum 1 to 10' => test_zci('Sum of natural numbers from 1 to 10 is 55.'),
'sum 55 to 63' => test_zci('Sum of natural numbers from 55 to 63 is 531.'),
2014-04-02 11:14:27 -07:00
'add 33 to 100' => test_zci('Sum of natural numbers from 33 to 100 is 4,522.'),
2014-04-02 09:31:24 -07:00
'sum 1-10' => test_zci('Sum of natural numbers from 1 to 10 is 55.'),
'sum from 1 to 10' => test_zci('Sum of natural numbers from 1 to 10 is 55.'),
'1-10 sum' => test_zci('Sum of natural numbers from 1 to 10 is 55.'),
2014-04-02 11:14:27 -07:00
'add from 1 to 100' => test_zci('Sum of natural numbers from 1 to 100 is 5,050.'),
2014-02-20 08:56:37 -08:00
# Invalid Input
'sum 1 --- 10' => undef,
'sum 100 - 10' => undef,
'add ten to twenty' => undef,
2014-01-20 14:32:51 -08:00
);
2016-05-16 06:18:04 -07:00
done_testing;