File Coverage

blib/lib/LINE/Bot/API/Response/Token.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod 0 5 0.0
total 26 31 83.8


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Response::Token;
2 50     50   345 use strict;
  50         98  
  50         1413  
3 50     50   242 use warnings;
  50         92  
  50         1186  
4 50     50   250 use utf8;
  50         96  
  50         256  
5 50     50   1184 use parent 'LINE::Bot::API::Response::Common';
  50         118  
  50         280  
6              
7 2     2 0 10 sub access_token { $_[0]->{access_token} }
8 2     2 0 10 sub expires_in { $_[0]->{expires_in} }
9 2     2 0 11 sub token_type { $_[0]->{token_type} }
10 1     1 0 5 sub key_id { $_[0]->{key_id} }
11              
12 1     1 0 8 sub key_ids { $_[0]->{key_ids}}
13              
14             1;