blib/lib/Weixin/Client/Callback.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 0 | 6 | 0.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 0 | 3 | 0.0 |
pod | 0 | 3 | 0.0 |
total | 0 | 12 | 0.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Weixin::Client::Callback; | ||||||
2 | sub on_run :lvalue { | ||||||
3 | 0 | 0 | 0 | my $self = shift; | |||
4 | 0 | $self->{on_run}; | |||||
5 | } | ||||||
6 | |||||||
7 | sub on_receive_msg:lvalue { | ||||||
8 | 0 | 0 | 0 | my $self = shift; | |||
9 | 0 | $self->{on_receive_msg}; | |||||
10 | } | ||||||
11 | |||||||
12 | sub on_send_msg :lvalue { | ||||||
13 | 0 | 0 | 0 | my $self = shift; | |||
14 | 0 | $self->{on_send_msg}; | |||||
15 | } | ||||||
16 | |||||||
17 | 1; |