File Coverage

blib/lib/Number/Phone/StubCountry/TK.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::TK;
20 2     2   1112 use base qw(Number::Phone::StubCountry);
  2         9  
  2         224  
21              
22 2     2   29 use strict;
  2         8  
  2         65  
23 2     2   12 use warnings;
  2         9  
  2         47  
24 2     2   16 use utf8;
  2         6  
  2         14  
25             our $VERSION = 1.20230307181422;
26              
27             my $formatters = [];
28              
29             my $validators = {
30             'fixed_line' => '
31             (?:
32             2[2-4]|
33             [34]\\d
34             )\\d{2,5}
35             ',
36             'geographic' => '
37             (?:
38             2[2-4]|
39             [34]\\d
40             )\\d{2,5}
41             ',
42             'mobile' => '7[2-4]\\d{2,5}',
43             'pager' => '',
44             'personal_number' => '',
45             'specialrate' => '',
46             'toll_free' => '',
47             'voip' => ''
48             };
49             my %areanames = ();
50             $areanames{en} = {"6903", "Fakaofo\ Atoll",
51             "6902", "Atafu\ Atoll",
52             "6904", "Nakunonu\ Atoll",};
53              
54             sub new {
55 7     7 1 25 my $class = shift;
56 7         17 my $number = shift;
57 7         44 $number =~ s/(^\+690|\D)//g;
58 7         38 my $self = bless({ country_code => '690', number => $number, formatters => $formatters, validators => $validators, areanames => \%areanames}, $class);
59 7 100       36 return $self->is_valid() ? $self : undef;
60             }
61             1;