File Coverage

blib/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 3     3   25976 use strict;
  3         5  
  3         102  
4 3     3   17 use warnings;
  3         6  
  3         111  
5 3     3   14 use vars qw($VERSION);
  3         11  
  3         343  
6              
7             $VERSION = '0.04';
8              
9             sub is_holiday {
10 1     1 1 2481 return 0;
11             }
12              
13             sub holidays {
14 1     1 1 2146 return \%;;
15             }
16              
17             1;
18              
19             __END__