File Coverage

blib/lib/InfluxDB/Client/Response/Status.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package InfluxDB::Client::Response::Status;
2             # ABSTRACT: status flags of the L class
3              
4 3     3   17 use strict;
  3         5  
  3         69  
5 3     3   13 use warnings;
  3         5  
  3         82  
6              
7              
8             use constant {
9 3         196 OK => 1,
10             SRVFAIL => 2,
11             AUTH => 3,
12             INTFAIL => 4,
13 3     3   12 };
  3         6  
14              
15             1;
16              
17             __END__