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.51';
3             # ABSTRACT: GBP Currency Module for Math::Currency
4              
5 1     1   3 use strict;
  1         1  
  1         22  
6 1     1   3 use warnings;
  1         1  
  1         19  
7 1     1   3 use base 'Math::Currency::en_GB';
  1         1  
  1         358  
8              
9             $Math::Currency::LC_MONETARY->{GBP} =
10             $Math::Currency::LC_MONETARY->{en_GB};
11              
12             1;
13              
14             __END__