First Is Awesome goodie

master
pseudozidu 2015-07-31 10:09:53 +00:00
parent 10eb4ddc91
commit f30294124d
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,26 @@
package DDG::Goodie::IsAwesome::rohit;
# ABSTRACT: A simple goodie by rohit
use DDG::Goodie;
use strict;
zci answer_type => "is_awesome_rohit";
zci is_cached => 1;
name "IsAwesome rohit";
description "Describes who exactly is awesome and all of his/her many accomplishment.";
primary_example_queries "duckduckhack rohit";
category "special";
topics "special_interest", "geek";
code_url "https://github.com/duckduckgo/zeroclickinfo-goodies/blob/master/lib/DDG/Goodie/IsAwesome/rohit.pm";
attribution github => ["https://github.com/rohitzidu", "rohit"],
twitter => "rohitzedu";
triggers start => "duckduckhack rohit", "rohit duckduckhack";
handle remainder => sub {
return if $_;
return "rohit is awesome and has successfully completed the DuckDuckHack Goodie tutorial!";
};
1;

19
t/IsAwesome/rohit.t Normal file
View File

@ -0,0 +1,19 @@
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
zci answer_type => "is_awesome_rohit";
zci is_cached => 1;
ddg_goodie_test(
[qw(
DDG::Goodie::IsAwesome::rohit
)],
'duckduckhack rohit' => test_zci('rohit is awesome and has successfully completed the DuckDuckHack Goodie tutorial!'),
'duckduckhack rohit is awesome' => undef,
);
done_testing;