File Coverage

blib/lib/Locale/CLDR/Locales/Fr/Any/Lu.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
4              
5             Locale::CLDR::Locales::Fr::Any::Lu - Package for language French
6              
7             =cut
8              
9             # This file auto generated from Data/common/main/fr_LU.xml
10             # on Mon 11 Apr 5:28:39 pm GMT
11              
12             use strict;
13 1     1   784 use warnings;
  1         2  
  1         22  
14 1     1   4 use version;
  1         2  
  1         18  
15 1     1   4  
  1         2  
  1         4  
16             our $VERSION = version->declare('v0.34.1');
17              
18             use v5.10.1;
19 1     1   73 use mro 'c3';
  1         3  
20 1     1   4 use utf8;
  1         2  
  1         4  
21 1     1   18 use if $^V ge v5.12.0, feature => 'unicode_strings';
  1         2  
  1         10  
22 1     1   37 use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef );
  1         1  
  1         10  
23 1     1   85 use Moo;
  1         1  
  1         5  
24 1     1   785  
  1         2  
  1         4  
25             extends('Locale::CLDR::Locales::Fr::Any');
26             has 'characters' => (
27             is => 'ro',
28             isa => HashRef,
29             init_arg => undef,
30             default => $^V ge v5.18.0
31             ? eval <<'EOT'
32             sub {
33             no warnings 'experimental::regex_sets';
34             return {
35             numbers => qr{[\- , . % ‰ + 0 1 2 3 4 5 6 7 8 9]},
36             };
37             },
38             EOT
39             : sub {
40             return {};
41             },
42             );
43 1     1   72  
  1         2  
  1         66  
44              
45             has 'number_symbols' => (
46             is => 'ro',
47             isa => HashRef,
48             init_arg => undef,
49             default => sub { {
50             'latn' => {
51             'group' => q(.),
52             },
53             } }
54             );
55              
56             has 'currencies' => (
57             is => 'ro',
58             isa => HashRef,
59             init_arg => undef,
60             default => sub { {
61             'FRF' => {
62             symbol => 'FRF',
63             },
64             'LUF' => {
65             symbol => 'F',
66             },
67             } },
68             );
69              
70              
71             no Moo;
72 1     1   417  
  1         1  
  1         4  
73             1;
74              
75             # vim: tabstop=4