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 8     8   24848 use 5.016000;
  8         31  
4 8     8   40 use strict;
  8         12  
  8         149  
5 8     8   41 use warnings;
  8         14  
  8         957  
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.05';
16              
17             require XSLoader;
18             XSLoader::load('Lingua::RU::Money::XS', $VERSION);
19              
20             1;
21              
22             __END__