File Coverage

blib/lib/Cookie/Baker/XS.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Cookie::Baker::XS;
2              
3 2     2   55195 use 5.008001;
  2         12  
4 2     2   7 use strict;
  2         4  
  2         32  
5 2     2   8 use warnings;
  2         4  
  2         52  
6 2     2   8 use base qw/Exporter/;
  2         3  
  2         260  
7              
8             our $VERSION = "0.11";
9             our @EXPORT_OK = qw/crush_cookie/;
10              
11 2     2   12 use XSLoader;
  2         3  
  2         86  
12             XSLoader::load(__PACKAGE__, $VERSION);
13              
14             1;
15             __END__