File Coverage

blib/lib/DateTime/TimeZone/America/Caracas.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/southamerica. Olson data version 2026a
7             #
8             # Do not edit this file directly.
9             #
10             package DateTime::TimeZone::America::Caracas;
11              
12 2     2   1457 use strict;
  2         5  
  2         84  
13 2     2   11 use warnings;
  2         5  
  2         103  
14 2     2   11 use namespace::autoclean;
  2         6  
  2         15  
15              
16             our $VERSION = '2.67';
17              
18 2     2   187 use Class::Singleton 1.03;
  2         38  
  2         96  
19 2     2   13 use DateTime::TimeZone;
  2         3  
  2         64  
20 2     2   9 use DateTime::TimeZone::OlsonDB;
  2         5  
  2         522  
21              
22             @DateTime::TimeZone::America::Caracas::ISA = ( 'Class::Singleton', 'DateTime::TimeZone' );
23              
24             my $spans =
25             [
26             [
27             DateTime::TimeZone::NEG_INFINITY, # utc_start
28             59611177664, # utc_end 1890-01-01 04:27:44 (Wed)
29             DateTime::TimeZone::NEG_INFINITY, # local_start
30             59611161600, # local_end 1890-01-01 00:00:00 (Wed)
31             -16064,
32             0,
33             'LMT',
34             ],
35             [
36             59611177664, # utc_start 1890-01-01 04:27:44 (Wed)
37             60308944060, # utc_end 1912-02-12 04:27:40 (Mon)
38             59611161604, # local_start 1890-01-01 00:00:04 (Wed)
39             60308928000, # local_end 1912-02-12 00:00:00 (Mon)
40             -16060,
41             0,
42             'CMT',
43             ],
44             [
45             60308944060, # utc_start 1912-02-12 04:27:40 (Mon)
46             61977933000, # utc_end 1965-01-01 04:30:00 (Fri)
47             60308927860, # local_start 1912-02-11 23:57:40 (Sun)
48             61977916800, # local_end 1965-01-01 00:00:00 (Fri)
49             -16200,
50             0,
51             '-0430',
52             ],
53             [
54             61977933000, # utc_start 1965-01-01 04:30:00 (Fri)
55             63332866800, # utc_end 2007-12-09 07:00:00 (Sun)
56             61977918600, # local_start 1965-01-01 00:30:00 (Fri)
57             63332852400, # local_end 2007-12-09 03:00:00 (Sun)
58             -14400,
59             0,
60             '-04',
61             ],
62             [
63             63332866800, # utc_start 2007-12-09 07:00:00 (Sun)
64             63597769200, # utc_end 2016-05-01 07:00:00 (Sun)
65             63332850600, # local_start 2007-12-09 02:30:00 (Sun)
66             63597753000, # local_end 2016-05-01 02:30:00 (Sun)
67             -16200,
68             0,
69             '-0430',
70             ],
71             [
72             63597769200, # utc_start 2016-05-01 07:00:00 (Sun)
73             DateTime::TimeZone::INFINITY, # utc_end
74             63597754800, # local_start 2016-05-01 03:00:00 (Sun)
75             DateTime::TimeZone::INFINITY, # local_end
76             -14400,
77             0,
78             '-04',
79             ],
80             ];
81              
82 7     7 0 15 sub olson_version {'2026a'}
83              
84 0     0 1 0 sub has_dst_changes {0}
85              
86 2     2   14 sub _max_year {2036}
87              
88             sub _new_instance {
89 2     2   36 return shift->_init( @_, spans => $spans );
90             }
91              
92              
93              
94             1;
95