File Coverage

blib/lib/Math/Currency/en_GB.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Math::Currency::en_GB;
2             $Math::Currency::en_GB::VERSION = '0.51';
3             # ABSTRACT: en_GB Locale Module for Math::Currency
4              
5 1     1   4 use utf8;
  1         1  
  1         4  
6 1     1   21 use strict;
  1         1  
  1         22  
7 1     1   6 use warnings;
  1         1  
  1         36  
8 1     1   3 use Math::Currency qw($LC_MONETARY $FORMAT);
  1         1  
  1         74  
9 1     1   3 use base qw(Exporter Math::Currency);
  1         1  
  1         124  
10              
11             our $LANG = 'en_GB';
12              
13             $LC_MONETARY->{en_GB} = {
14             INT_CURR_SYMBOL => 'GBP ',
15             CURRENCY_SYMBOL => '£',
16             MON_DECIMAL_POINT => '.',
17             MON_THOUSANDS_SEP => ',',
18             MON_GROUPING => '3',
19             POSITIVE_SIGN => '',
20             NEGATIVE_SIGN => '-',
21             INT_FRAC_DIGITS => '2',
22             FRAC_DIGITS => '2',
23             P_CS_PRECEDES => '1',
24             P_SEP_BY_SPACE => '0',
25             N_CS_PRECEDES => '1',
26             N_SEP_BY_SPACE => '0',
27             P_SIGN_POSN => '1',
28             N_SIGN_POSN => '1'
29             };
30              
31             require Math::Currency::GBP;
32              
33             1;
34              
35             __END__