File Coverage

blib/lib/Locale/CLDR/MeasurementSystem.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


line stmt bran cond sub pod time code
1             package Locale::CLDR::MeasurementSystem;
2             # This file auto generated from Data.xml
3             # on Sat 24 Oct 9:19:18 am GMT
4              
5 20     20   12657 use version;
  20         45  
  20         135  
6              
7             our $VERSION = version->declare('v0.28.1');
8              
9 20     20   2147 use v5.10.1;
  20         72  
10 20     20   108 use mro 'c3';
  20         42  
  20         138  
11 20     20   752 use utf8;
  20         44  
  20         136  
12 20     20   757 use if $^V ge v5.12.0, feature => 'unicode_strings';
  20         46  
  20         266  
13              
14 20     20   2136 use Moose::Role;
  20         41  
  20         136  
15              
16             has 'measurement_system' => (
17             is => 'ro',
18             isa => 'HashRef',
19             init_arg => undef,
20             default => sub { {
21             '001' => 'metric',
22             'LR' => 'US',
23             'MM' => 'US',
24             'US' => 'US',
25             'LR' => 'metric',
26             'MM' => 'metric',
27             'BS' => 'US',
28             'BZ' => 'US',
29             'KY' => 'US',
30             'PR' => 'US',
31             'PW' => 'US',
32             'GB' => 'UK',
33             } },
34             );
35              
36             has 'paper_size' => (
37             is => 'ro',
38             isa => 'HashRef',
39             init_arg => undef,
40             default => sub { {
41             '001' => 'A4',
42             'BZ' => 'US-Letter',
43             'CA' => 'US-Letter',
44             'CL' => 'US-Letter',
45             'CO' => 'US-Letter',
46             'CR' => 'US-Letter',
47             'GT' => 'US-Letter',
48             'MX' => 'US-Letter',
49             'NI' => 'US-Letter',
50             'PA' => 'US-Letter',
51             'PH' => 'US-Letter',
52             'PR' => 'US-Letter',
53             'SV' => 'US-Letter',
54             'US' => 'US-Letter',
55             'VE' => 'US-Letter',
56             } },
57             );
58              
59 20     20   112867 no Moose::Role;
  20         49  
  20         94  
60              
61             1;
62              
63             # vim: tabstop=4