File Coverage

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