File Coverage

File:blib/lib/Geo/Coder/Free/DB/MaxMind/cities.pm
Coverage:84.2%

linestmtbrancondsubpodtimecode
1package Geo::Coder::Free::DB::MaxMind::cities;
2
3
16
16
16
65251
15
219
use strict;
4
16
16
16
28
15
488
use warnings;
5
16
16
16
199
5980
65
use autodie qw(:all);
6
7 - 15
=head1 NAME

Geo::Coder::Free::DB::MaxMind::cities - driver for https://www.maxmind.com/en/free-world-cities-database

=head1 VERSION

Version 0.42

=cut
16
17our $VERSION = '0.43';
18
19
16
16
16
39976
18
66
use parent 'Database::Abstraction';
20
21sub _open {
22
0
        my $self = shift;
23
24
0
        return $self->SUPER::_open(sep_char => ',');
25}
26
271;