File Coverage

blib/lib/Number/Phone/StubCountry/NU.pm
Criterion Covered Total %
statement 17 17 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 25 25 100.0


line stmt bran cond sub pod time code
1             # automatically generated file, don't edit
2              
3              
4              
5             # Copyright 2023 David Cantrell, derived from data from libphonenumber
6             # http://code.google.com/p/libphonenumber/
7             #
8             # Licensed under the Apache License, Version 2.0 (the "License");
9             # you may not use this file except in compliance with the License.
10             # You may obtain a copy of the License at
11             #
12             # http://www.apache.org/licenses/LICENSE-2.0
13             #
14             # Unless required by applicable law or agreed to in writing, software
15             # distributed under the License is distributed on an "AS IS" BASIS,
16             # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17             # See the License for the specific language governing permissions and
18             # limitations under the License.
19             package Number::Phone::StubCountry::NU;
20 2     2   1161 use base qw(Number::Phone::StubCountry);
  2         6  
  2         220  
21              
22 2     2   18 use strict;
  2         11  
  2         43  
23 2     2   14 use warnings;
  2         6  
  2         45  
24 2     2   13 use utf8;
  2         7  
  2         17  
25             our $VERSION = 1.20230307181421;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '8',
31             'pattern' => '(\\d{3})(\\d{4})'
32             }
33             ];
34              
35             my $validators = {
36             'fixed_line' => '[47]\\d{3}',
37             'geographic' => '[47]\\d{3}',
38             'mobile' => '888[4-9]\\d{3}',
39             'pager' => '',
40             'personal_number' => '',
41             'specialrate' => '',
42             'toll_free' => '',
43             'voip' => ''
44             };
45              
46             sub new {
47 7     7 1 16 my $class = shift;
48 7         13 my $number = shift;
49 7         41 $number =~ s/(^\+683|\D)//g;
50 7         35 my $self = bless({ country_code => '683', number => $number, formatters => $formatters, validators => $validators, }, $class);
51 7 100       33 return $self->is_valid() ? $self : undef;
52             }
53             1;