File Coverage

blib/lib/Number/Phone/StubCountry/GI.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::GI;
20 2     2   1104 use base qw(Number::Phone::StubCountry);
  2         6  
  2         216  
21              
22 2     2   14 use strict;
  2         5  
  2         44  
23 2     2   12 use warnings;
  2         7  
  2         94  
24 2     2   17 use utf8;
  2         4  
  2         12  
25             our $VERSION = 1.20230903131447;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '2',
31             'pattern' => '(\\d{3})(\\d{5})'
32             }
33             ];
34              
35             my $validators = {
36             'fixed_line' => '
37             2190[0-2]\\d{3}|
38             2(?:
39             0(?:
40             [02]\\d|
41             3[01]
42             )|
43             16[24-9]|
44             2[2-5]\\d
45             )\\d{4}
46             ',
47             'geographic' => '
48             2190[0-2]\\d{3}|
49             2(?:
50             0(?:
51             [02]\\d|
52             3[01]
53             )|
54             16[24-9]|
55             2[2-5]\\d
56             )\\d{4}
57             ',
58             'mobile' => '
59             5251[0-4]\\d{3}|
60             (?:
61             5(?:
62             [146-8]\\d\\d|
63             250
64             )|
65             60(?:
66             1[01]|
67             6\\d
68             )
69             )\\d{4}
70             ',
71             'pager' => '',
72             'personal_number' => '',
73             'specialrate' => '',
74             'toll_free' => '',
75             'voip' => ''
76             };
77              
78             sub new {
79 7     7 1 15 my $class = shift;
80 7         25 my $number = shift;
81 7         45 $number =~ s/(^\+350|\D)//g;
82 7         37 my $self = bless({ country_code => '350', number => $number, formatters => $formatters, validators => $validators, }, $class);
83 7 100       44 return $self->is_valid() ? $self : undef;
84             }
85             1;