File Coverage

blib/lib/Kubernetes/REST/AuthToken.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Kubernetes::REST::AuthToken;
2 1     1   406 use Moo;
  1         2  
  1         4  
3 1     1   246 use Types::Standard qw/Str/;
  1         2  
  1         6  
4              
5             has token => (is => 'ro', isa => Str, required => 1);
6              
7             1;