File Coverage

blib/lib/DateTime/TimeZone/America/Panama.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::America::Panama;
11              
12 5     5   3804 use strict;
  5         13  
  5         231  
13 5     5   52 use warnings;
  5         12  
  5         336  
14 5     5   36 use namespace::autoclean;
  5         12  
  5         41  
15              
16             our $VERSION = '2.67';
17              
18 5     5   665 use Class::Singleton 1.03;
  5         119  
  5         160  
19 5     5   34 use DateTime::TimeZone;
  5         25  
  5         157  
20 5     5   610 use DateTime::TimeZone::OlsonDB;
  5         13  
  5         1129  
21              
22             @DateTime::TimeZone::America::Panama::ISA = ( 'Class::Singleton', 'DateTime::TimeZone' );
23              
24             my $spans =
25             [
26             [
27             DateTime::TimeZone::NEG_INFINITY, # utc_start
28             59611180688, # utc_end 1890-01-01 05:18:08 (Wed)
29             DateTime::TimeZone::NEG_INFINITY, # local_start
30             59611161600, # local_end 1890-01-01 00:00:00 (Wed)
31             -19088,
32             0,
33             'LMT',
34             ],
35             [
36             59611180688, # utc_start 1890-01-01 05:18:08 (Wed)
37             60188764776, # utc_end 1908-04-22 05:19:36 (Wed)
38             59611161512, # local_start 1889-12-31 23:58:32 (Tue)
39             60188745600, # local_end 1908-04-22 00:00:00 (Wed)
40             -19176,
41             0,
42             'CMT',
43             ],
44             [
45             60188764776, # utc_start 1908-04-22 05:19:36 (Wed)
46             DateTime::TimeZone::INFINITY, # utc_end
47             60188746776, # local_start 1908-04-22 00:19:36 (Wed)
48             DateTime::TimeZone::INFINITY, # local_end
49             -18000,
50             0,
51             'EST',
52             ],
53             ];
54              
55 15     15 0 40 sub olson_version {'2026a'}
56              
57 0     0 1 0 sub has_dst_changes {0}
58              
59 5     5   41 sub _max_year {2036}
60              
61             sub _new_instance {
62 5     5   91 return shift->_init( @_, spans => $spans );
63             }
64              
65              
66              
67             1;
68