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 50     50   353 use strict;
  50         106  
  50         1428  
3 50     50   242 use warnings;
  50         108  
  50         1227  
4 50     50   246 use parent 'LINE::Bot::API::Response::Common';
  50         100  
  50         242  
5              
6 1     1 1 5 sub endpoint { $_[0]->{endpoint} }
7 1     1 1 5 sub active { $_[0]->{active} }
8              
9             1;
10              
11             __END__