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 | 2338 | use strict; | |||
2 | 4 | ||||||
2 | 46 | ||||||
4 | 2 | 2 | 10 | use warnings; | |||
2 | 4 | ||||||
2 | 65 | ||||||
5 | 2 | 2 | 7 | use vars qw($VERSION); | |||
2 | 4 | ||||||
2 | 183 | ||||||
6 | |||||||
7 | our $VERSION = '0.06'; # VERSION: generated by DZP::OurPkgVersion | ||||||
8 | |||||||
9 | sub is_holiday { | ||||||
10 | 1 | 1 | 1 | 1593 | return 0; | ||
11 | } | ||||||
12 | |||||||
13 | sub holidays { | ||||||
14 | 1 | 1 | 1 | 1539 | return \%;; | ||
15 | } | ||||||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |