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   34884 use 5.010000;
  8         68  
4 8     8   42 use strict;
  8         13  
  8         182  
5 8     8   37 use warnings;
  8         12  
  8         1213  
6              
7             require Exporter;
8              
9             our @ISA = qw(Exporter);
10              
11             our @EXPORT = qw();
12             our %EXPORT_TAGS = (
13             all => [ qw(rur2words all2words) ]
14             );
15             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
16              
17             our $VERSION = '0.08';
18              
19             require XSLoader;
20             XSLoader::load('Lingua::RU::Money::XS', $VERSION);
21              
22             1;
23              
24             __END__