File Coverage

lib/Sisimai/Reason/Undefined.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::Undefined;
2 4     4   1786 use v5.26;
  4         12  
3 4     4   14 use strict;
  4         4  
  4         70  
4 4     4   12 use warnings;
  4         6  
  4         359  
5              
6 1     1 1 16 sub text { 'undefined' }
7 4     4 0 17 sub description { 'Sisimai could not detect an error reason' }
8 1     1 1 6 sub match { return 0 }
9 1     1 0 7 sub true { return 0 }
10             1;
11              
12             __END__