File Coverage

lib/Sisimai/Reason/SyntaxError.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::SyntaxError;
2 34     34   2118 use v5.26;
  34         100  
3 34     34   259 use strict;
  34         76  
  34         717  
4 34     34   143 use warnings;
  34         61  
  34         3189  
5              
6 1     1 1 16 sub text { 'syntaxerror' }
7 4     4 0 16 sub description { 'Email rejected due to syntax error at sent commands in SMTP session' }
8 398     398 1 864 sub match { return 0 }
9 69     69 0 185 sub true { return 0 }
10              
11             1;
12             __END__