File Coverage

blib/lib/Bot/Cobalt/Plugin/Silly/MakeMoneyAtHome.pm
Criterion Covered Total %
statement 10 25 40.0
branch 0 2 0.0
condition n/a
subroutine 4 7 57.1
pod 0 4 0.0
total 14 38 36.8


line stmt bran cond sub pod time code
1             package Bot::Cobalt::Plugin::Silly::MakeMoneyAtHome;
2             $Bot::Cobalt::Plugin::Silly::MakeMoneyAtHome::VERSION = '0.031002';
3 1     1   1212 use strictures 2;
  1         5  
  1         30  
4              
5 1     1   178 use Bot::Cobalt::Common;
  1         2  
  1         6  
6              
7 1     1   5494 use Acme::MakeMoneyAtHome;
  1         440  
  1         202  
8              
9 1     1 0 237 sub new { bless [], shift }
10              
11             sub Cobalt_register {
12 0     0 0   my ($self, $core) = splice @_, 0, 2;
13            
14 0           $core->plugin_register( $self, SERVER => 'public_cmd_makemoney' );
15            
16 0           $core->log->info("Loaded");
17              
18 0           return PLUGIN_EAT_NONE
19             }
20              
21             sub Cobalt_unregister {
22 0     0 0   my ($self, $core) = splice @_, 0, 2;
23              
24 0           $core->log->info("Unloaded");
25              
26 0           return PLUGIN_EAT_NONE
27             }
28              
29             sub Bot_public_cmd_makemoney {
30 0     0 0   my ($self, $core) = splice @_, 0, 2;
31              
32 0           my $msg = ${ $_[0] };
  0            
33 0           my $context = $msg->context;
34              
35 0           my $resp = make_money_at_home;
36              
37 0           my $channel = $msg->channel;
38              
39 0 0         $core->send_event( 'send_message',
40             $context,
41             $channel,
42             $resp
43             ) if $resp;
44            
45 0           return PLUGIN_EAT_ALL
46             }
47              
48             1;
49             __END__