File Coverage

blib/lib/LINE/Bot/API/Response/WebhookInformation.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 2 2 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::WebhookInformation;
2 52     52   329 use strict;
  52         135  
  52         2785  
3 52     52   276 use warnings;
  52         109  
  52         2984  
4 52     52   313 use parent 'LINE::Bot::API::Response::Common';
  52         108  
  52         506  
5              
6 1     1 1 4 sub endpoint { $_[0]->{endpoint} }
7 1     1 1 3 sub active { $_[0]->{active} }
8              
9             1;
10              
11             __END__