File Coverage

blib/lib/LINE/Bot/API/Event/Unsend.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Event::Unsend;
2 53     53   426 use strict;
  53         119  
  53         2210  
3 53     53   324 use warnings;
  53         88  
  53         2888  
4 53     53   622 use parent 'LINE::Bot::API::Event::Base';
  53         88  
  53         294  
5              
6 1     1 0 5 sub is_unsend_event { 1 }
7              
8 1     1 0 6 sub message_id { $_[0]->{unsend}{messageId} }
9              
10             1;