File Coverage

blib/lib/Redis/Parser/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 Redis::Parser::XS;
2              
3 4     4   171439 use strict;
  4         10  
  4         139  
4 4     4   18 use warnings;
  4         8  
  4         106  
5 4     4   16 no warnings 'uninitialized';
  4         10  
  4         385  
6              
7             require Exporter;
8             our @ISA = qw(Exporter);
9             our @EXPORT = qw(
10             parse_redis
11             );
12              
13             our $VERSION = '0.02';
14              
15             require XSLoader;
16             XSLoader::load('Redis::Parser::XS', $VERSION);
17              
18              
19             1;
20             __END__