2013-07-19 19:46:17 -07:00
#!/usr/bin/env perl
use strict ;
use warnings ;
use Test::More ;
use DDG::Test::Goodie ;
zci answer_type = > 'potus' ;
zci is_cached = > 1 ;
ddg_goodie_test (
2013-07-22 23:01:05 -07:00
[ qw(
2013-07-19 19:46:17 -07:00
DDG::Goodie:: POTUS
) ] ,
2013-07-23 19:04:39 -07:00
'who is president of the united states' = > test_zci (
'Barack Obama is the 44th President of the United States.' ,
2013-08-13 12:03:07 -07:00
html = > '<a href="https://en.wikipedia.org/wiki/Barack%20Obama">Barack Obama</a> is the 44<sup>th</sup> President of the United States.' ) ,
2013-07-23 20:26:35 -07:00
'who is the fourth president of the united states' = > test_zci (
'James Madison was the 4th President of the United States.' ,
2013-08-13 12:03:07 -07:00
html = > '<a href="https://en.wikipedia.org/wiki/James%20Madison">James Madison</a> was the 4<sup>th</sup> President of the United States.' ) ,
2013-07-23 20:26:35 -07:00
'who is the nineteenth president of the united states' = > test_zci (
'Rutherford B. Hayes was the 19th President of the United States.' ,
2013-08-13 12:03:07 -07:00
html = > '<a href="https://en.wikipedia.org/wiki/Rutherford%20B.%20Hayes">Rutherford B. Hayes</a> was the 19<sup>th</sup> President of the United States.' ) ,
2013-07-23 19:04:39 -07:00
'who was the 1st president of the united states' = > test_zci (
'George Washington was the 1st President of the United States.' ,
2013-08-13 12:03:07 -07:00
html = > '<a href="https://en.wikipedia.org/wiki/George%20Washington">George Washington</a> was the 1<sup>st</sup> President of the United States.' ) ,
2013-07-23 19:04:39 -07:00
'who was the 31 president of the united states' = > test_zci (
'Herbert Hoover was the 31st President of the United States.' ,
2013-08-13 12:03:07 -07:00
html = > '<a href="https://en.wikipedia.org/wiki/Herbert%20Hoover">Herbert Hoover</a> was the 31<sup>st</sup> President of the United States.' ) ,
2013-07-23 19:04:39 -07:00
'who was the 22 president of the united states' = > test_zci (
'Grover Cleveland was the 22nd President of the United States.' ,
2013-08-13 12:03:07 -07:00
html = > '<a href="https://en.wikipedia.org/wiki/Grover%20Cleveland">Grover Cleveland</a> was the 22<sup>nd</sup> President of the United States.' ) ,
2013-07-23 19:04:39 -07:00
'potus 11' = > test_zci (
'James K. Polk was the 11th President of the United States.' ,
2013-08-13 12:03:07 -07:00
html = > '<a href="https://en.wikipedia.org/wiki/James%20K.%20Polk">James K. Polk</a> was the 11<sup>th</sup> President of the United States.' ) ,
2013-07-23 19:04:39 -07:00
'POTUS 24' , = > test_zci (
'Grover Cleveland was the 24th President of the United States.' ,
2013-08-13 12:03:07 -07:00
html = > '<a href="https://en.wikipedia.org/wiki/Grover%20Cleveland">Grover Cleveland</a> was the 24<sup>th</sup> President of the United States.' ) ,
2013-07-24 12:05:53 -07:00
'who was the twenty-second POTUS?' = > test_zci (
'Grover Cleveland was the 22nd President of the United States.' ,
2013-08-13 12:03:07 -07:00
html = > '<a href="https://en.wikipedia.org/wiki/Grover%20Cleveland">Grover Cleveland</a> was the 22<sup>nd</sup> President of the United States.' ) ,
2014-02-10 13:24:52 -08:00
'potus 16' = > test_zci (
'Abraham Lincoln was the 16th President of the United States.' ,
html = > '<a href="https://en.wikipedia.org/wiki/Abraham%20Lincoln">Abraham Lincoln</a> was the 16<sup>th</sup> President of the United States.' ) ,
2013-07-19 19:46:17 -07:00
) ;
done_testing ;