File Coverage

blib/lib/Net/OpenID/Connect/IDToken/Constants.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::OpenID::Connect::IDToken::Constants;
2 4     4   21 use strict;
  4         5  
  4         112  
3 4     4   20 use warnings;
  4         6  
  4         113  
4              
5 4     4   20 use parent qw/Exporter/;
  4         8  
  4         21  
6              
7             our @EXPORT;
8              
9             use Exporter::Constants (
10 4         45 \@EXPORT => {
11             ERROR_IDTOKEN_INVALID_ALGORITHM => "error_idtoken_invalid_algorithm",
12             ERROR_IDTOKEN_TOKEN_HASH_NOT_FOUND => "error_idtoken_token_hash_not_found",
13             ERROR_IDTOKEN_TOKEN_HASH_INVALID => "error_idtoken_token_hash_invalid",
14             ERROR_IDTOKEN_CODE_HASH_NOT_FOUND => "error_idtoken_code_hash_not_found",
15             ERROR_IDTOKEN_CODE_HASH_INVALID => "error_idtoken_code_hash_invalid",
16             },
17 4     4   3551 );
  4         1794  
18              
19             1;