File Coverage

lib/Mail/AuthenticationResults/Header/SubEntry.pm
Criterion Covered Total %
statement 19 19 100.0
branch 4 4 100.0
condition n/a
subroutine 8 8 100.0
pod n/a
total 31 31 100.0


line stmt bran cond sub pod time code
1             package Mail::AuthenticationResults::Header::SubEntry;
2             # ABSTRACT: Class modelling Sub Entry parts of the Authentication Results Header
3              
4             require 5.008;
5 27     27   1746 use strict;
  27         47  
  27         796  
6 27     27   131 use warnings;
  27         50  
  27         997  
7             our $VERSION = '2.20210915'; # VERSION
8 27     27   177 use Carp;
  27         50  
  27         1368  
9              
10 27     27   151 use base 'Mail::AuthenticationResults::Header::Base';
  27         69  
  27         5164  
11              
12              
13 1288     1288   3018 sub _HAS_KEY{ return 1; }
14 1120     1120   3719 sub _HAS_VALUE{ return 1; }
15 1320     1320   2451 sub _HAS_CHILDREN{ return 1; }
16              
17             sub _ALLOWED_CHILDREN {
18 52     52   93 my ( $self, $child ) = @_;
19 52 100       162 return 1 if ref $child eq 'Mail::AuthenticationResults::Header::Comment';
20 12 100       28 return 1 if ref $child eq 'Mail::AuthenticationResults::Header::Version';
21 7         67 return 0;
22             }
23              
24             1;
25              
26             __END__