File Coverage

blib/lib/Number/Phone/StubCountry/BI.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::BI;
20 2     2   1176 use base qw(Number::Phone::StubCountry);
  2         9  
  2         227  
21              
22 2     2   20 use strict;
  2         10  
  2         42  
23 2     2   12 use warnings;
  2         5  
  2         50  
24 2     2   11 use utf8;
  2         8  
  2         11  
25             our $VERSION = 1.20230307181417;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3 $4',
30             'leading_digits' => '[2367]',
31             'pattern' => '(\\d{2})(\\d{2})(\\d{2})(\\d{2})'
32             }
33             ];
34              
35             my $validators = {
36             'fixed_line' => '
37             (?:
38             22|
39             31
40             )\\d{6}
41             ',
42             'geographic' => '
43             (?:
44             22|
45             31
46             )\\d{6}
47             ',
48             'mobile' => '
49             (?:
50             29|
51             [67][125-9]
52             )\\d{6}
53             ',
54             'pager' => '',
55             'personal_number' => '',
56             'specialrate' => '',
57             'toll_free' => '',
58             'voip' => ''
59             };
60             my %areanames = ();
61             $areanames{en} = {"2572223", "Bujumbura",
62             "2572230", "North\ zone",
63             "2572226", "West\ zone",
64             "2572220", "Bujumbura",
65             "2572224", "Bujumbura",
66             "2572250", "South\ zone",
67             "2572225", "Bujumbura",
68             "2572222", "Bujumbura",
69             "2572227", "Rural\ areas",
70             "2572240", "Central\ east\ zone",
71             "2572221", "Bujumbura",};
72              
73             sub new {
74 7     7 1 14 my $class = shift;
75 7         13 my $number = shift;
76 7         42 $number =~ s/(^\+257|\D)//g;
77 7         40 my $self = bless({ country_code => '257', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
78 7 100       31 return $self->is_valid() ? $self : undef;
79             }
80             1;