The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

use strict;

use lib 't/inc';
use fatalwarnings;

use Test::More tests => 1;

use Number::Phone::Country qw(uk);

ok(Number::Phone::Country::phone2country('+44 20 12345678') eq 'UK', "can return UK instead of GB");