File Coverage

blib/lib/Net/ACME/Constants.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 10 100.0


line stmt bran cond sub pod time code
1             package Net::ACME::Constants;
2              
3             #----------------------------------------------------------------------
4             # Please do NOT reference these from outside the Net::ACME namespace!
5             #----------------------------------------------------------------------
6              
7 11     11   119177 use strict;
  11         27  
  11         356  
8 11     11   57 use warnings;
  11         21  
  11         508  
9              
10             our $VERSION;
11             BEGIN {
12 11     11   403 $VERSION = '0.12';
13             }
14              
15             our $HTTP_01_CHALLENGE_DCV_DIR_IN_DOCROOT = '.well-known/acme-challenge';
16              
17             1;