File Coverage

blib/lib/DateTime/TimeZone/Pacific/Honolulu.pm
Criterion Covered Total %
statement 21 22 95.4
branch n/a
condition n/a
subroutine 9 10 90.0
pod 1 2 50.0
total 31 34 91.1


line stmt bran cond sub pod time code
1             # This file is auto-generated by the Perl DateTime Suite time zone
2             # code generator (0.08) This code generator comes with the
3             # DateTime::TimeZone module distribution in the tools/ directory
4              
5             #
6             # Generated from /tmp/IIA7keyKs7/northamerica. Olson data version 2026a
7             #
8             # Do not edit this file directly.
9             #
10             package DateTime::TimeZone::Pacific::Honolulu;
11              
12 4     4   3424 use strict;
  4         11  
  4         182  
13 4     4   26 use warnings;
  4         10  
  4         300  
14 4     4   31 use namespace::autoclean;
  4         9  
  4         60  
15              
16             our $VERSION = '2.67';
17              
18 4     4   478 use Class::Singleton 1.03;
  4         94  
  4         123  
19 4     4   25 use DateTime::TimeZone;
  4         9  
  4         148  
20 4     4   25 use DateTime::TimeZone::OlsonDB;
  4         8  
  4         1313  
21              
22             @DateTime::TimeZone::Pacific::Honolulu::ISA = ( 'Class::Singleton', 'DateTime::TimeZone' );
23              
24             my $spans =
25             [
26             [
27             DateTime::TimeZone::NEG_INFINITY, # utc_start
28             59801581886, # utc_end 1896-01-13 22:31:26 (Mon)
29             DateTime::TimeZone::NEG_INFINITY, # local_start
30             59801544000, # local_end 1896-01-13 12:00:00 (Mon)
31             -37886,
32             0,
33             'LMT',
34             ],
35             [
36             59801581886, # utc_start 1896-01-13 22:31:26 (Mon)
37             60978400200, # utc_end 1933-04-30 12:30:00 (Sun)
38             59801544086, # local_start 1896-01-13 12:01:26 (Mon)
39             60978362400, # local_end 1933-04-30 02:00:00 (Sun)
40             -37800,
41             0,
42             'HST',
43             ],
44             [
45             60978400200, # utc_start 1933-04-30 12:30:00 (Sun)
46             60980247000, # utc_end 1933-05-21 21:30:00 (Sun)
47             60978366000, # local_start 1933-04-30 03:00:00 (Sun)
48             60980212800, # local_end 1933-05-21 12:00:00 (Sun)
49             -34200,
50             1,
51             'HDT',
52             ],
53             [
54             60980247000, # utc_start 1933-05-21 21:30:00 (Sun)
55             61255485000, # utc_end 1942-02-09 12:30:00 (Mon)
56             60980209200, # local_start 1933-05-21 11:00:00 (Sun)
57             61255447200, # local_end 1942-02-09 02:00:00 (Mon)
58             -37800,
59             0,
60             'HST',
61             ],
62             [
63             61255485000, # utc_start 1942-02-09 12:30:00 (Mon)
64             61366287600, # utc_end 1945-08-14 23:00:00 (Tue)
65             61255450800, # local_start 1942-02-09 03:00:00 (Mon)
66             61366253400, # local_end 1945-08-14 13:30:00 (Tue)
67             -34200,
68             1,
69             'HWT',
70             ],
71             [
72             61366287600, # utc_start 1945-08-14 23:00:00 (Tue)
73             61370307000, # utc_end 1945-09-30 11:30:00 (Sun)
74             61366253400, # local_start 1945-08-14 13:30:00 (Tue)
75             61370272800, # local_end 1945-09-30 02:00:00 (Sun)
76             -34200,
77             1,
78             'HPT',
79             ],
80             [
81             61370307000, # utc_start 1945-09-30 11:30:00 (Sun)
82             61423533000, # utc_end 1947-06-08 12:30:00 (Sun)
83             61370269200, # local_start 1945-09-30 01:00:00 (Sun)
84             61423495200, # local_end 1947-06-08 02:00:00 (Sun)
85             -37800,
86             0,
87             'HST',
88             ],
89             [
90             61423533000, # utc_start 1947-06-08 12:30:00 (Sun)
91             DateTime::TimeZone::INFINITY, # utc_end
92             61423497000, # local_start 1947-06-08 02:30:00 (Sun)
93             DateTime::TimeZone::INFINITY, # local_end
94             -36000,
95             0,
96             'HST',
97             ],
98             ];
99              
100 11     11 0 38 sub olson_version {'2026a'}
101              
102 0     0 1 0 sub has_dst_changes {3}
103              
104 4     4   32 sub _max_year {2036}
105              
106             sub _new_instance {
107 4     4   75 return shift->_init( @_, spans => $spans );
108             }
109              
110              
111              
112             1;
113