File Coverage

blib/lib/Specio/XS.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Specio::XS;
2              
3 32     32   20954 use strict;
  32         60  
  32         1199  
4 32     32   167 use warnings;
  32         48  
  32         2320  
5              
6             our $VERSION = '0.53';
7              
8 32     32   13886 use Clone qw( clone );
  32         16006  
  32         2394  
9              
10 32     32   212 use Exporter qw( import );
  32         51  
  32         2787  
11              
12             ## no critic (Modules::ProhibitAutomaticExportation)
13             our @EXPORT = qw( _clone );
14              
15             ## no critic (Subroutines::ProhibitUnusedPrivateSubroutines)
16             sub _clone {
17 194     194   10901 return clone(shift);
18             }
19              
20             1;