File Coverage

blib/lib/Number/Phone/StubCountry/NI.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::NI;
20 2     2   1011 use base qw(Number::Phone::StubCountry);
  2         7  
  2         208  
21              
22 2     2   17 use strict;
  2         7  
  2         47  
23 2     2   12 use warnings;
  2         8  
  2         48  
24 2     2   10 use utf8;
  2         6  
  2         13  
25             our $VERSION = 1.20230307181421;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '[125-8]',
31             'pattern' => '(\\d{4})(\\d{4})'
32             }
33             ];
34              
35             my $validators = {
36             'fixed_line' => '2\\d{7}',
37             'geographic' => '2\\d{7}',
38             'mobile' => '
39             (?:
40             5(?:
41             5[0-7]|
42             [78]\\d
43             )|
44             6(?:
45             20|
46             3[035]|
47             4[045]|
48             5[05]|
49             77|
50             8[1-9]|
51             9[059]
52             )|
53             (?:
54             7[5-8]|
55             8\\d
56             )\\d
57             )\\d{5}
58             ',
59             'pager' => '',
60             'personal_number' => '',
61             'specialrate' => '',
62             'toll_free' => '1800\\d{4}',
63             'voip' => ''
64             };
65              
66             sub new {
67 10     10 1 22 my $class = shift;
68 10         16 my $number = shift;
69 10         67 $number =~ s/(^\+505|\D)//g;
70 10         48 my $self = bless({ country_code => '505', number => $number, formatters => $formatters, validators => $validators, }, $class);
71 10 100       44 return $self->is_valid() ? $self : undef;
72             }
73             1;