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 46     46   298 use strict;
  46         97  
  46         1250  
3 46     46   337 use warnings;
  46         96  
  46         3512  
4 46     46   350 use parent 'LINE::Bot::API::Response::Common';
  46         84  
  46         230  
5              
6 1     1 0 6 sub type { $_[0]->{type} }
7 1     1 0 8 sub value { $_[0]->{value} }
8              
9             1;