zeroclickinfo-goodies/t/PercentOf.t

70 lines
1.6 KiB
Perl
Raw Normal View History

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
zci answer_type => "percent_of";
zci is_cached => 1;
ddg_goodie_test(
[qw( DDG::Goodie::PercentOf )],
'4+50%' => test_zci('Result: 6',
structured_answer => {
2015-04-24 02:17:01 -07:00
input => ['4+50%'],
operation => "Calculate",
result => 6
}),
'456+120%' => test_zci('Result: 1003.2',
structured_answer => {
2015-04-24 02:17:01 -07:00
input => ['456+120%'],
operation => "Calculate",
result => 1003.2
}),
2015-01-14 11:28:02 -08:00
'3.4+6%' => test_zci('Result: 3.604',
structured_answer => {
2015-04-24 02:17:01 -07:00
input => ['3.4+6%'],
2015-01-14 11:28:02 -08:00
operation => "Calculate",
result => 3.604
}),
2015-01-14 11:28:02 -08:00
'323.7+55.3%' => test_zci('Result: 502.7061',
structured_answer => {
2015-04-24 02:17:01 -07:00
input => ['323.7+55.3%'],
2015-01-14 11:28:02 -08:00
operation => "Calculate",
result => 502.7061
}),
'577.40*5%' => test_zci('Result: 28.87',
structured_answer => {
2015-04-24 02:17:01 -07:00
input => ['577.40*5%'],
operation => "Calculate",
result => 28.87
}),
2015-04-24 02:17:01 -07:00
'$577.40*0.5%' => test_zci('Result: 2.887',
structured_answer => {
input => ['$577.40*0.5%'],
operation => "Calculate",
result => 2.887
}),
2015-04-24 02:17:01 -07:00
'200-50%' => test_zci('Result: 100',
structured_answer => {
input => ['200-50%'],
operation => "Calculate",
result => 100
}),
'200+50-10%' => undef,
'urldecode hello%20there' => undef,
'34$+16' => undef,
'12+5t%' => undef
);
done_testing;