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 Sun 15 Nov 3:59:02 pm GMT
4              
5 20     20   12328 use version;
  20         41  
  20         148  
6              
7             our $VERSION = version->declare('v0.28.2');
8              
9 20     20   1949 use v5.10.1;
  20         69  
10 20     20   104 use mro 'c3';
  20         38  
  20         128  
11 20     20   761 use utf8;
  20         36  
  20         119  
12 20     20   657 use if $^V ge v5.12.0, feature => 'unicode_strings';
  20         45  
  20         279  
13              
14 20     20   2105 use Moose::Role;
  20         38  
  20         142  
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   109807 no Moose::Role;
  20         48  
  20         95  
60              
61             1;
62              
63             # vim: tabstop=4