File Coverage

blib/lib/Number/Phone/StubCountry/SS.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::SS;
20 2     2   1209 use base qw(Number::Phone::StubCountry);
  2         7  
  2         232  
21              
22 2     2   23 use strict;
  2         10  
  2         58  
23 2     2   14 use warnings;
  2         7  
  2         54  
24 2     2   17 use utf8;
  2         10  
  2         12  
25             our $VERSION = 1.20230903131448;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3',
30             'leading_digits' => '[19]',
31             'national_rule' => '0$1',
32             'pattern' => '(\\d{3})(\\d{3})(\\d{3})'
33             }
34             ];
35              
36             my $validators = {
37             'fixed_line' => '1[89]\\d{7}',
38             'geographic' => '1[89]\\d{7}',
39             'mobile' => '
40             (?:
41             12|
42             9[1257-9]
43             )\\d{7}
44             ',
45             'pager' => '',
46             'personal_number' => '',
47             'specialrate' => '',
48             'toll_free' => '',
49             'voip' => ''
50             };
51              
52             sub new {
53 7     7 1 23 my $class = shift;
54 7         16 my $number = shift;
55 7         48 $number =~ s/(^\+211|\D)//g;
56 7         37 my $self = bless({ country_code => '211', number => $number, formatters => $formatters, validators => $validators, }, $class);
57 7 100       38 return $self if ($self->is_valid());
58 1         5 $number =~ s/^(?:0)//;
59 1         16 $self = bless({ country_code => '211', number => $number, formatters => $formatters, validators => $validators, }, $class);
60 1 50       6 return $self->is_valid() ? $self : undef;
61             }
62             1;