File Coverage

blib/lib/Number/Phone/StubCountry/SH.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::SH;
20 3     3   1628 use base qw(Number::Phone::StubCountry);
  3         7  
  3         354  
21              
22 3     3   28 use strict;
  3         8  
  3         64  
23 3     3   15 use warnings;
  3         11  
  3         69  
24 3     3   17 use utf8;
  3         6  
  3         19  
25             our $VERSION = 1.20230307181422;
26              
27             my $formatters = [];
28              
29             my $validators = {
30             'fixed_line' => '
31             2(?:
32             [0-57-9]\\d|
33             6[4-9]
34             )\\d\\d
35             ',
36             'geographic' => '
37             2(?:
38             [0-57-9]\\d|
39             6[4-9]
40             )\\d\\d
41             ',
42             'mobile' => '[56]\\d{4}',
43             'pager' => '',
44             'personal_number' => '',
45             'specialrate' => '',
46             'toll_free' => '',
47             'voip' => '262\\d\\d'
48             };
49             my %areanames = ();
50             $areanames{en} = {"290267", "St\.\ Helena",
51             "290268", "St\.\ Helena",
52             "29024", "St\.\ Helena",
53             "29027", "St\.\ Helena",
54             "290266", "St\.\ Helena",
55             "2908", "Tristan\ da\ Cunha",
56             "29022", "Jamestown",
57             "290269", "St\.\ Helena",
58             "29023", "St\.\ Helena",
59             "290264", "St\.\ Helena",
60             "290265", "St\.\ Helena",};
61             $areanames{fr} = {"290265", "Sainte\-Hélène",
62             "290264", "Sainte\-Hélène",
63             "29023", "Sainte\-Hélène",
64             "290269", "Sainte\-Hélène",
65             "290266", "Sainte\-Hélène",
66             "29027", "Sainte\-Hélène",
67             "29024", "Sainte\-Hélène",
68             "290268", "Sainte\-Hélène",
69             "290267", "Sainte\-Hélène",};
70              
71             sub new {
72 24     24 1 52 my $class = shift;
73 24         47 my $number = shift;
74 24         124 $number =~ s/(^\+290|\D)//g;
75 24         136 my $self = bless({ country_code => '290', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
76 24 100       106 return $self->is_valid() ? $self : undef;
77             }
78             1;