File Coverage

blib/lib/Locale/CLDR/Locales/Ar/Any/So.pm
Criterion Covered Total %
statement 32 32 100.0
branch n/a
condition n/a
subroutine 11 11 100.0
pod n/a
total 43 43 100.0


line stmt bran cond sub pod time code
1             =encoding utf8
2              
3             =head1 NAME
4              
5             Locale::CLDR::Locales::Ar::Any::So - Package for language Arabic
6              
7             =cut
8              
9             package Locale::CLDR::Locales::Ar::Any::So;
10             # This file auto generated from Data\common\main\ar_SO.xml
11             # on Fri 13 Oct 9:05:31 am GMT
12              
13 1     1   878 use strict;
  1         2  
  1         25  
14 1     1   5 use warnings;
  1         2  
  1         19  
15 1     1   5 use version;
  1         2  
  1         4  
16              
17             our $VERSION = version->declare('v0.34.2');
18              
19 1     1   84 use v5.10.1;
  1         3  
20 1     1   4 use mro 'c3';
  1         2  
  1         4  
21 1     1   32 use utf8;
  1         2  
  1         4  
22 1     1   28 use if $^V ge v5.12.0, feature => 'unicode_strings';
  1         8  
  1         12  
23 1     1   93 use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef );
  1         1  
  1         6  
24 1     1   897 use Moo;
  1         1  
  1         6  
25              
26             extends('Locale::CLDR::Locales::Ar::Any');
27             has 'characters' => (
28             is => 'ro',
29             isa => HashRef,
30             init_arg => undef,
31             default => $^V ge v5.18.0
32             ? eval <<'EOT'
33             sub {
34             no warnings 'experimental::regex_sets';
35             return {
36             numbers => qr{[‎ \- , . ٪ ‰ + 0 1 2 3 4 5 6 7 8 9]},
37             };
38             },
39             EOT
40             : sub {
41             return {};
42             },
43 1     1   86 );
  1         2  
  1         66  
44              
45              
46             has 'default_numbering_system' => (
47             is => 'ro',
48             isa => Str,
49             init_arg => undef,
50             default => 'arab',
51             );
52              
53             has 'number_symbols' => (
54             is => 'ro',
55             isa => HashRef,
56             init_arg => undef,
57             default => sub { {
58             'latn' => {
59             'percentSign' => q(٪),
60             },
61             } }
62             );
63              
64             has 'currencies' => (
65             is => 'ro',
66             isa => HashRef,
67             init_arg => undef,
68             default => sub { {
69             'SOS' => {
70             symbol => 'S',
71             },
72             } },
73             );
74              
75              
76 1     1   503 no Moo;
  1         2  
  1         10  
77              
78             1;
79              
80             # vim: tabstop=4