File Coverage

blib/lib/Net/ACME2/Challenge.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Net::ACME2::Challenge;
2              
3 3     3   383 use strict;
  3         4  
  3         59  
4 3     3   10 use warnings;
  3         4  
  3         60  
5              
6             =encoding utf-8
7              
8             =head1 NAME
9              
10             Net::ACME2::Challenge
11              
12             =head1 DESCRIPTION
13              
14             The ACME Challenge object.
15              
16             You probably won’t instantiate these directly; they’re created automatically
17             as part of L instantiation.
18              
19             =cut
20              
21 3     3   9 use parent qw( Net::ACME2::AccessorBase );
  3         5  
  3         13  
22              
23 3         161 use constant _ACCESSORS => (
24             'url',
25             'type',
26             'status',
27             'validated',
28             'error',
29             'token',
30 3     3   137 );
  3         11  
31              
32             =head1 ACCESSORS
33              
34             These provide text strings as defined in the ACME specification.
35              
36             =over
37              
38             =item * B
39              
40             =item * B
41              
42             =item * B
43              
44             =item * B
45              
46             =item * B
47              
48             =back
49              
50             =cut
51              
52             1;