File Coverage

lib/Cron/Toolkit/Pattern/Unspecified.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package Cron::Toolkit::Pattern::Unspecified;
2 2     2   14 use strict;
  2         4  
  2         76  
3 2     2   11 use warnings;
  2         3  
  2         145  
4 2     2   11 use parent 'Cron::Toolkit::Pattern';
  2         4  
  2         17  
5              
6             sub type {
7 2543     2543 0 6899 return 'unspecified';
8             }
9              
10             sub match {
11 1892     1892 0 4693 return 1;
12             }
13              
14             1;