use
strict;
use
warnings;
use
nptestutils;
use
Test::More;
is(Number::Phone::Country::phone2country(
'+47 1234 5678'
),
'NO'
,
"first of three"
);
is(Number::Phone::Country::phone2country(
'+44 20 12345678'
),
'GB'
,
"uk not set accidentally"
);
done_testing();