File Coverage

blib/lib/LINE/Bot/API/Response/NumberOfFollowers.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 0 4 0.0
total 20 24 83.3


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::NumberOfFollowers;
2 46     46   294 use strict;
  46         109  
  46         1259  
3 46     46   235 use warnings;
  46         114  
  46         1099  
4 46     46   215 use parent 'LINE::Bot::API::Response::Common';
  46         85  
  46         216  
5              
6 1     1 0 5 sub status { $_[0]->{status} }
7 1     1 0 5 sub followers { $_[0]->{followers} }
8 1     1 0 6 sub targetedReaches { $_[0]->{targetedReaches} }
9 1     1 0 5 sub blocks { $_[0]->{blocks} }
10              
11             1;