File Coverage

blib/lib/Number/Phone/StubCountry/SL.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::SL;
20 2     2   1252 use base qw(Number::Phone::StubCountry);
  2         5  
  2         284  
21              
22 2     2   15 use strict;
  2         5  
  2         47  
23 2     2   12 use warnings;
  2         4  
  2         94  
24 2     2   14 use utf8;
  2         8  
  2         15  
25             our $VERSION = 1.20230307181422;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '[236-9]',
31             'national_rule' => '(0$1)',
32             'pattern' => '(\\d{2})(\\d{6})'
33             }
34             ];
35              
36             my $validators = {
37             'fixed_line' => '22[2-4][2-9]\\d{4}',
38             'geographic' => '22[2-4][2-9]\\d{4}',
39             'mobile' => '
40             (?:
41             25|
42             3[0-5]|
43             66|
44             7[2-9]|
45             8[08]|
46             9[09]
47             )\\d{6}
48             ',
49             'pager' => '',
50             'personal_number' => '',
51             'specialrate' => '',
52             'toll_free' => '',
53             'voip' => ''
54             };
55             my %areanames = ();
56             $areanames{en} = {"23222", "Freetown",};
57              
58             sub new {
59 7     7 1 22 my $class = shift;
60 7         14 my $number = shift;
61 7         43 $number =~ s/(^\+232|\D)//g;
62 7         43 my $self = bless({ country_code => '232', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
63 7 100       40 return $self if ($self->is_valid());
64 1         2 $number =~ s/^(?:0)//;
65 1         9 $self = bless({ country_code => '232', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
66 1 50       4 return $self->is_valid() ? $self : undef;
67             }
68             1;