The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

use Geo::IP;

use Test::More;

my $gi = Geo::IP->open( 't/data/GeoIPDomain.dat', GEOIP_STANDARD );

is(
    $gi->name_by_addr('67.43.156.0'), 'shoesfin.NET',
    'expected domain name'
);

done_testing();