File Coverage

blib/lib/Number/Phone/StubCountry/MR.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::MR;
20 2     2   1113 use base qw(Number::Phone::StubCountry);
  2         7  
  2         232  
21              
22 2     2   18 use strict;
  2         8  
  2         47  
23 2     2   12 use warnings;
  2         6  
  2         53  
24 2     2   11 use utf8;
  2         7  
  2         13  
25             our $VERSION = 1.20230903131448;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3 $4',
30             'leading_digits' => '[2-48]',
31             'pattern' => '(\\d{2})(\\d{2})(\\d{2})(\\d{2})'
32             }
33             ];
34              
35             my $validators = {
36             'fixed_line' => '
37             (?:
38             25[08]|
39             35\\d|
40             45[1-7]
41             )\\d{5}
42             ',
43             'geographic' => '
44             (?:
45             25[08]|
46             35\\d|
47             45[1-7]
48             )\\d{5}
49             ',
50             'mobile' => '[2-4][0-46-9]\\d{6}',
51             'pager' => '',
52             'personal_number' => '',
53             'specialrate' => '',
54             'toll_free' => '800\\d{5}',
55             'voip' => ''
56             };
57             my %areanames = ();
58             $areanames{en} = {"2224569", "Rosso\/Tidjikja",
59             "2224544", "Zouérat",
60             "2224546", "Atar",
61             "2224515", "Aioun",
62             "22245", "Nouakchott",
63             "2224533", "Kaédi",
64             "2224563", "Kiffa",
65             "2224537", "Aleg",
66             "2224574", "Nouadhibou",
67             "2224534", "Sélibaby",
68             "2224550", "Boghé",
69             "2224513", "Néma",};
70             $areanames{fr} = {"2224515", "Aîoun",};
71              
72             sub new {
73 10     10 1 35 my $class = shift;
74 10         28 my $number = shift;
75 10         66 $number =~ s/(^\+222|\D)//g;
76 10         67 my $self = bless({ country_code => '222', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
77 10 100       57 return $self->is_valid() ? $self : undef;
78             }
79             1;