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   1583 use base qw(Number::Phone::StubCountry);
  3         15  
  3         329  
21              
22 3     3   28 use strict;
  3         13  
  3         72  
23 3     3   16 use warnings;
  3         10  
  3         73  
24 3     3   22 use utf8;
  3         11  
  3         15  
25             our $VERSION = 1.20230903131448;
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{fr} = {"290267", "Sainte\-Hélène",
51             "290266", "Sainte\-Hélène",
52             "290264", "Sainte\-Hélène",
53             "29027", "Sainte\-Hélène",
54             "290269", "Sainte\-Hélène",
55             "290265", "Sainte\-Hélène",
56             "29023", "Sainte\-Hélène",
57             "29024", "Sainte\-Hélène",
58             "290268", "Sainte\-Hélène",};
59             $areanames{en} = {"290268", "St\.\ Helena",
60             "29024", "St\.\ Helena",
61             "290265", "St\.\ Helena",
62             "29023", "St\.\ Helena",
63             "29022", "Jamestown",
64             "290269", "St\.\ Helena",
65             "2908", "Tristan\ da\ Cunha",
66             "290264", "St\.\ Helena",
67             "29027", "St\.\ Helena",
68             "290266", "St\.\ Helena",
69             "290267", "St\.\ Helena",};
70              
71             sub new {
72 24     24 1 54 my $class = shift;
73 24         51 my $number = shift;
74 24         140 $number =~ s/(^\+290|\D)//g;
75 24         131 my $self = bless({ country_code => '290', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
76 24 100       130 return $self->is_valid() ? $self : undef;
77             }
78             1;