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   1029 use base qw(Number::Phone::StubCountry);
  2         5  
  2         204  
21              
22 2     2   13 use strict;
  2         5  
  2         43  
23 2     2   8 use warnings;
  2         5  
  2         45  
24 2     2   11 use utf8;
  2         5  
  2         9  
25             our $VERSION = 1.20230307181421;
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{fr} = {"2224515", "Aîoun",};
59             $areanames{en} = {"2224533", "Kaédi",
60             "22245", "Nouakchott",
61             "2224574", "Nouadhibou",
62             "2224550", "Boghé",
63             "2224534", "Sélibaby",
64             "2224569", "Rosso\/Tidjikja",
65             "2224515", "Aioun",
66             "2224544", "Zouérat",
67             "2224537", "Aleg",
68             "2224563", "Kiffa",
69             "2224513", "Néma",
70             "2224546", "Atar",};
71              
72             sub new {
73 10     10 1 20 my $class = shift;
74 10         17 my $number = shift;
75 10         61 $number =~ s/(^\+222|\D)//g;
76 10         56 my $self = bless({ country_code => '222', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
77 10 100       46 return $self->is_valid() ? $self : undef;
78             }
79             1;