Help language development. Donate to The Perl Foundation
#- Generated by update.raku #- Based on Release 20198 - 2019-03-25 22:01:33 -0700 use Test; use DateTime::TimeZone::Zone::America::Blanc_dash_Sablon; plan 4; my $tz := DateTime::TimeZone::Zone::America::Blanc_dash_Sablon.new; isa-ok $tz, DateTime::TimeZone::Zone::America::Blanc_dash_Sablon; is $tz.name, 'America/Blanc-Sablon', "is it named America/Blanc-Sablon"; isa-ok $tz.zonedata, List, 'is the zonedata a List'; isa-ok $tz.rules, Map, 'are the rules a Map';