File Coverage

blib/lib/Number/Phone/StubCountry/YT.pm
Criterion Covered Total %
statement 20 20 100.0
branch 3 4 75.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 29 30 96.6


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::YT;
20 3     3   1876 use base qw(Number::Phone::StubCountry);
  3         9  
  3         388  
21              
22 3     3   26 use strict;
  3         10  
  3         73  
23 3     3   20 use warnings;
  3         9  
  3         99  
24 3     3   16 use utf8;
  3         9  
  3         21  
25             our $VERSION = 1.20230614174405;
26              
27             my $formatters = [];
28              
29             my $validators = {
30             'fixed_line' => '
31             269(?:
32             0[0-467]|
33             5[0-3]|
34             6\\d|
35             [78]0
36             )\\d{4}
37             ',
38             'geographic' => '
39             269(?:
40             0[0-467]|
41             5[0-3]|
42             6\\d|
43             [78]0
44             )\\d{4}
45             ',
46             'mobile' => '
47             (?:
48             639(?:
49             0[0-79]|
50             1[019]|
51             [267]\\d|
52             3[09]|
53             40|
54             5[05-9]|
55             9[04-79]
56             )|
57             9398[01]
58             )\\d{4}
59             ',
60             'pager' => '',
61             'personal_number' => '',
62             'specialrate' => '',
63             'toll_free' => '80\\d{7}',
64             'voip' => ''
65             };
66              
67             sub new {
68 12     12 1 41 my $class = shift;
69 12         33 my $number = shift;
70 12         82 $number =~ s/(^\+262|\D)//g;
71 12         72 my $self = bless({ country_code => '262', number => $number, formatters => $formatters, validators => $validators, }, $class);
72 12 100       73 return $self if ($self->is_valid());
73 4         27 $number =~ s/^(?:0)//;
74 4         49 $self = bless({ country_code => '262', number => $number, formatters => $formatters, validators => $validators, }, $class);
75 4 50       17 return $self->is_valid() ? $self : undef;
76             }
77             1;