Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

use strict;
use lib 't/lib';
ok(
!DateTime::TimeZone->new( name => 'UTC' )->has_dst_changes,
'UTC has no DST changes'
);
ok(
!DateTime::TimeZone->new( name => 'floating' )->has_dst_changes,
'floating has no DST changes'
);
ok(
!DateTime::TimeZone->new( name => 'Asia/Thimphu' )->has_dst_changes,
'Asia/Thimphu has no DST changes'
);
ok(
DateTime::TimeZone->new( name => 'America/Chicago' )->has_dst_changes,
'America/chicago has DST changes'
);
done_testing();