File: 13short-name-has-slash.t

package info (click to toggle)
libdatetime-timezone-perl 1%3A2.60-1%2B2024a
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 22,188 kB
  • sloc: perl: 2,732; sh: 59; makefile: 10
file content (30 lines) | stat: -rw-r--r-- 663 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use strict;
use warnings;

use lib 't/lib';
use T::RequireDateTime;

use Test::More;

# Some time zone observances in the Olson DB have short names like
# "GMT/BST", which means "alternate between GMT and BST".  This tests
# that the parser does the right thing.
{
    my $dt = DateTime->new(
        year      => 2005, month => 6,
        time_zone => 'Europe/London'
    );

    is( $dt->time_zone_short_name, 'BST', 'time zone short name is BST' );
}

{
    my $dt = DateTime->new(
        year      => 2005, month => 1,
        time_zone => 'Europe/London'
    );

    is( $dt->time_zone_short_name, 'GMT', 'time zone short name is GMT' );
}

done_testing();