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   505 use strict;
  3         7  
  3         80  
4 3     3   14 use warnings;
  3         8  
  3         93  
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   17 use parent qw( Net::ACME2::AccessorBase );
  3         6  
  3         22  
22              
23 3         249 use constant _ACCESSORS => (
24             'url',
25             'type',
26             'status',
27             'validated',
28             'error',
29             'token',
30 3     3   225 );
  3         13  
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;