File Coverage

lib/Date/Holidays/Super.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 2 2 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Date::Holidays::Super;
2              
3 2     2   2159 use strict;
  2         3  
  2         325  
4 2     2   84 use warnings;
  2         4  
  2         87  
5 2     2   20 use vars qw($VERSION);
  2         3  
  2         224  
6              
7             our $VERSION = '0.05'; # VERSION: generated by DZP::OurPkgVersion
8              
9             sub is_holiday {
10 1     1 1 2113 return 0;
11             }
12              
13             sub holidays {
14 1     1 1 1726 return \%;;
15             }
16              
17             1;
18              
19             __END__