Help language development. Donate to The Perl Foundation

DateTime::TimeZone zef:raku-community-modules last updated on 2022-03-13

xt/Pacific-Tarawa.rakutest
#- Generated by update.raku
#- Based on Release 20198 - 2019-03-25 22:01:33 -0700

use Test;
use DateTime::TimeZone::Zone::Pacific::Tarawa;

plan 4;

my $tz := DateTime::TimeZone::Zone::Pacific::Tarawa.new;

isa-ok $tz, DateTime::TimeZone::Zone::Pacific::Tarawa;
is $tz.name, 'Pacific/Tarawa', "is it named Pacific/Tarawa";
isa-ok $tz.zonedata, List, 'is the zonedata a List';
isa-ok $tz.rules, Map, 'are the rules a Map';