File Coverage

lib/Lingua/RU/Money/XS.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Lingua::RU::Money::XS;
2              
3 7     7   20620 use 5.016000;
  7         18  
4 7     7   23 use strict;
  7         7  
  7         118  
5 7     7   26 use warnings;
  7         10  
  7         894  
6              
7             require Exporter;
8              
9             our @ISA = qw(Exporter);
10              
11             our @EXPORT = qw();
12             our %EXPORT_TAGS = ( 'all' => [ qw(rur2words) ] );
13             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
14              
15             our $VERSION = '0.04';
16              
17             require XSLoader;
18             XSLoader::load('Lingua::RU::Money::XS', $VERSION);
19              
20             1;
21              
22             __END__