File Coverage

blib/lib/Text/CSV/Easy_XS.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 Text::CSV::Easy_XS;
2 1     1   38180 use 5.010;
  1         4  
  1         58  
3 1     1   6 use strict;
  1         3  
  1         54  
4 1     1   6 use warnings FATAL => 'all';
  1         8  
  1         333  
5              
6             our $VERSION = '0.53';
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__