File Coverage

blib/lib/Acme/Math/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   15415 use strict; use warnings;
  1     1   1  
  1         33  
  1         4  
  1         2  
  1         45  
2              
3             package Acme::Math::XS;
4             our $VERSION = '0.0.20';
5              
6 1     1   4 use Exporter 'import';
  1         6  
  1         57  
7             our @EXPORT = qw(add subtract);
8              
9 1     1   6 use XSLoader();
  1         1  
  1         42  
10             XSLoader::load 'Acme::Math::XS', $VERSION;
11              
12             1;