File Coverage

blib/lib/Text/CSV/Easy_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 Text::CSV::Easy_XS;
2 5     5   411942 use 5.010;
  5         59  
3 5     5   28 use strict;
  5         10  
  5         148  
4 5     5   88 use warnings FATAL => 'all';
  5         17  
  5         722  
5              
6             our $VERSION = '0.54';
7              
8             require Exporter;
9              
10             our @ISA = qw(Exporter);
11             our @EXPORT_OK = qw(csv_build csv_parse);
12              
13             # version numbering to ensure PP and XS stay in sync.
14             our $TCE_VERSION = 2;
15              
16             require XSLoader;
17             XSLoader::load( 'Text::CSV::Easy_XS', $VERSION );
18              
19             1;
20              
21             __END__