File Coverage

blib/lib/LINE/Bot/API/Response/TargetLimit.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::Response::TargetLimit;
2 50     50   338 use strict;
  50         108  
  50         1433  
3 50     50   498 use warnings;
  50         100  
  50         4166  
4 50     50   399 use parent 'LINE::Bot::API::Response::Common';
  50         97  
  50         292  
5              
6 1     1 0 5 sub type { $_[0]->{type} }
7 1     1 0 6 sub value { $_[0]->{value} }
8              
9             1;