File: 17special-names.t

package info (click to toggle)
libdatetime-timezone-perl 1%3A1.75-2%2B2018e
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-updates
  • size: 191,260 kB
  • sloc: perl: 2,767; sh: 42; makefile: 14
file content (17 lines) | stat: -rw-r--r-- 385 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use warnings;

use File::Spec;
use Test::More;

use lib File::Spec->catdir( File::Spec->curdir, 't' );

BEGIN { require 'check_datetime_version.pl' }

for my $name (
    qw( EST MST HST CET EET MET WET EST5EDT CST6CDT MST7MDT PST8PDT )) {
    my $tz = eval { DateTime::TimeZone->new( name => $name ) };
    ok( $tz, "got a timezone for name => $name" );
}

done_testing();