File Coverage

blib/lib/Math/Currency/EUR.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::EUR;
2             $Math::Currency::EUR::VERSION = '0.51';
3             # ABSTRACT: EUR Currency Module for Math::Currency
4              
5 1     1   3 use strict;
  1         1  
  1         27  
6 1     1   3 use warnings;
  1         1  
  1         30  
7 1     1   3 use base 'Math::Currency::de_DE';
  1         1  
  1         401  
8              
9             $Math::Currency::LC_MONETARY->{EUR} =
10             $Math::Currency::LC_MONETARY->{de_DE};
11              
12             1;
13              
14             __END__