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 NAME
4              
5             Locale::CLDR::Locales::Fr::Any::Lu - Package for language French
6              
7             =cut
8              
9             package Locale::CLDR::Locales::Fr::Any::Lu;
10             # This file auto generated from Data\common\main\fr_LU.xml
11             # on Fri 13 Oct 9:17:01 am GMT
12              
13 1     1   944 use strict;
  1         2  
  1         123  
14 1     1   7 use warnings;
  1         1  
  1         21  
15 1     1   5 use version;
  1         2  
  1         5  
16              
17             our $VERSION = version->declare('v0.34.2');
18              
19 1     1   108 use v5.10.1;
  1         3  
20 1     1   12 use mro 'c3';
  1         3  
  1         6  
21 1     1   26 use utf8;
  1         1  
  1         6  
22 1     1   27 use if $^V ge v5.12.0, feature => 'unicode_strings';
  1         20  
  1         14  
23 1     1   105 use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef );
  1         2  
  1         14  
24 1     1   951 use Moo;
  1         2  
  1         6  
25              
26             extends('Locale::CLDR::Locales::Fr::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   85 );
  1         2  
  1         83  
44              
45              
46             has 'number_symbols' => (
47             is => 'ro',
48             isa => HashRef,
49             init_arg => undef,
50             default => sub { {
51             'latn' => {
52             'group' => q(.),
53             },
54             } }
55             );
56              
57             has 'currencies' => (
58             is => 'ro',
59             isa => HashRef,
60             init_arg => undef,
61             default => sub { {
62             'FRF' => {
63             symbol => 'FRF',
64             },
65             'LUF' => {
66             symbol => 'F',
67             },
68             } },
69             );
70              
71              
72 1     1   465 no Moo;
  1         3  
  1         5  
73              
74             1;
75              
76             # vim: tabstop=4