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   316 use strict;
  46         102  
  46         1359  
3 46     46   222 use warnings;
  46         100  
  46         1128  
4 46     46   234 use parent 'LINE::Bot::API::Response::Common';
  46         106  
  46         264  
5              
6 1     1 0 6 sub status { $_[0]->{status} }
7 1     1 0 6 sub followers { $_[0]->{followers} }
8 1     1 0 7 sub targetedReaches { $_[0]->{targetedReaches} }
9 1     1 0 5 sub blocks { $_[0]->{blocks} }
10              
11             1;