File Coverage

blib/lib/Number/Phone/StubCountry/TD.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::TD;
20 2     2   1234 use base qw(Number::Phone::StubCountry);
  2         7  
  2         252  
21              
22 2     2   21 use strict;
  2         7  
  2         50  
23 2     2   15 use warnings;
  2         5  
  2         56  
24 2     2   11 use utf8;
  2         10  
  2         16  
25             our $VERSION = 1.20230307181422;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3 $4',
30             'leading_digits' => '[2679]',
31             'pattern' => '(\\d{2})(\\d{2})(\\d{2})(\\d{2})'
32             }
33             ];
34              
35             my $validators = {
36             'fixed_line' => '
37             22(?:
38             [37-9]0|
39             5[0-5]|
40             6[89]
41             )\\d{4}
42             ',
43             'geographic' => '
44             22(?:
45             [37-9]0|
46             5[0-5]|
47             6[89]
48             )\\d{4}
49             ',
50             'mobile' => '
51             (?:
52             6[0235689]|
53             77|
54             9\\d
55             )\\d{6}
56             ',
57             'pager' => '',
58             'personal_number' => '',
59             'specialrate' => '',
60             'toll_free' => '',
61             'voip' => ''
62             };
63              
64             sub new {
65 7     7 1 16 my $class = shift;
66 7         25 my $number = shift;
67 7         47 $number =~ s/(^\+235|\D)//g;
68 7         40 my $self = bless({ country_code => '235', number => $number, formatters => $formatters, validators => $validators, }, $class);
69 7 100       41 return $self->is_valid() ? $self : undef;
70             }
71             1;