1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
use strict;
use warnings;
use lib 't/inc';
use nptestutils;
use Test::More;
plan skip_all => 'not relevant if building --without_uk' if(building_without_uk());
use Number::Phone;
my $phone = Number::Phone->new(44, '02087712924');
ok($phone->isa('Number::Phone::UK'), "N::P->new(CC, 'nnnn') returns N::P::CC object");
is($phone->format(), "+44 20 8771 2924", "and it's got the right data");
eval { Number::Phone->new(44, '02087712924', 'apples!') };
ok($@ =~ /too many params/, "dies OK on too many params");
done_testing();
|