File Coverage

blib/lib/LINE/Bot/API/Response/Followers.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 2 0.0
total 20 22 90.9


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::Followers;
2 52     52   416 use strict;
  52         114  
  52         2318  
3 52     52   286 use warnings;
  52         142  
  52         2522  
4 52     52   294 use utf8;
  52         88  
  52         294  
5 52     52   1806 use parent 'LINE::Bot::API::Response::Common';
  52         89  
  52         282  
6              
7 4     4 0 19 sub user_ids { $_[0]->{userIds} }
8 4     4 0 24 sub next { $_[0]->{next} }
9              
10             1;