File Coverage

lib/Sisimai/Reason/Delivered.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 2 4 50.0
total 21 23 91.3


line stmt bran cond sub pod time code
1             package Sisimai::Reason::Delivered;
2 4     4   2322 use v5.26;
  4         14  
3 4     4   17 use strict;
  4         7  
  4         90  
4 4     4   14 use warnings;
  4         7  
  4         414  
5              
6 1     1 1 18 sub text { 'delivered' }
7 4     4 0 16 sub description { 'Email delivered successfully' }
8 1     1 1 5 sub match { return 0 }
9 1     1 0 4 sub true { return 0 }
10              
11             1;
12             __END__