File Coverage

blib/lib/Etcd3/Lease.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1 4     4   14 use utf8;
  4         5  
  4         17  
2             package Etcd3::Lease;
3              
4 4     4   127 use strict;
  4         5  
  4         82  
5 4     4   13 use warnings;
  4         3  
  4         83  
6              
7 4     4   1248 use Etcd3::Lease::Grant;
  4         6  
  4         134  
8 4     4   1317 use Etcd3::Lease::KeepAlive;
  4         9  
  4         104  
9 4     4   1356 use Etcd3::Lease::Revoke;
  4         8  
  4         966  
10 4     4   1274 use Etcd3::Lease::TimeToLive;
  4         8  
  4         172  
11              
12             =head1 NAME
13              
14             Etcd3::Lease
15              
16             =cut
17              
18             our $VERSION = '0.005';
19              
20             =head1 DESCRIPTION
21              
22             =cut
23              
24             1;