File Coverage

blib/lib/Math/Currency/JPY.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::JPY;
2             $Math::Currency::JPY::VERSION = '0.53';
3             # ABSTRACT: JPY Currency Module for Math::Currency
4              
5 2     2   20 use strict;
  2         6  
  2         79  
6 2     2   13 use warnings;
  2         6  
  2         124  
7 2     2   12 use base 'Math::Currency::ja_JP';
  2         4  
  2         736  
8              
9             $Math::Currency::LC_MONETARY->{JPY} =
10             $Math::Currency::LC_MONETARY->{ja_JP};
11              
12             1;
13              
14             __END__