File Coverage

blib/lib/Math/Currency/GBP.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Math::Currency::GBP;
2             $Math::Currency::GBP::VERSION = '0.52';
3             # ABSTRACT: GBP Currency Module for Math::Currency
4              
5 1     1   11 use strict;
  1         2  
  1         41  
6 1     1   7 use warnings;
  1         3  
  1         61  
7 1     1   7 use base 'Math::Currency::en_GB';
  1         4  
  1         458  
8              
9             $Math::Currency::LC_MONETARY->{GBP} =
10             $Math::Currency::LC_MONETARY->{en_GB};
11              
12             1;
13              
14             __END__