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