File Coverage

blib/lib/URI/Encode/XS.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1 1     1   13053 use strict;
  1         1  
  1         23  
2 1     1   4 use warnings;
  1         1  
  1         28  
3             package URI::Encode::XS;
4              
5 1     1   3 use XSLoader;
  1         3  
  1         23  
6 1     1   3 use Exporter 5.57 'import';
  1         15  
  1         59  
7              
8             our $VERSION = '0.08';
9             our @EXPORT_OK = ( qw/uri_encode uri_decode/ );
10              
11             XSLoader::load('URI::Encode::XS', $VERSION);
12              
13             1;
14             __END__