File Coverage

blib/lib/Number/Phone/StubCountry/ER.pm
Criterion Covered Total %
statement 20 20 100.0
branch 3 4 75.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 29 30 96.6


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