Skip to content

Commit 1d6c384

Browse files
committed
0.2
1 parent c71c19c commit 1d6c384

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

Changes

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
Revision history for Geo::Region
22

33
{{$NEXT}}
4+
5+
0.2 2024-12-16T20:41:18+01:00
46
- Initial version as a Raku Community module

t/00-load.rakutest

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
use lib 'lib';
2-
31
use Test;
2+
43
use Geo::Region;
54

65
plan 4;
@@ -12,3 +11,5 @@ ok $obj.isa(Geo::Region), 'isa Geo::Region';
1211
ok $obj.can('contains'), 'can contains';
1312
ok $obj.can('is-within'), 'can is-within';
1413
ok $obj.can('countries'), 'can countries';
14+
15+
# vim: expandtab shiftwidth=4

t/enum.rakutest

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
use lib 'lib';
2-
31
use Test;
2+
43
use Geo::Region::Enum;
54

65
plan 8;
@@ -13,3 +12,5 @@ is Region::OutlyingOceania, 'QO', 'subcontinent region, CLDR extension';
1312
is Region::EuropeanUnion, 'EU', 'grouping region, CLDR extension';
1413
is Country::Afghanistan, 'AF', 'country';
1514
is Country::ÅlandIslands, 'AX', 'non-ASCII country';
15+
16+
# vim: expandtab shiftwidth=4

t/region.rakutest

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
use lib 'lib';
2-
31
use Test;
2+
43
use Geo::Region;
54

65
plan 8;
@@ -123,3 +122,5 @@ subtest {
123122
ok $r.contains('UK'), 'contains deprecated country';
124123
is-deeply $r.countries, <GB>.list, 'only official countries';
125124
}, 'deprecated alias UK for GB';
125+
126+
# vim: expandtab shiftwidth=4

0 commit comments

Comments
 (0)