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   23351 use strict; use warnings;
  1     1   3  
  1         46  
  1         5  
  1         2  
  1         70  
2              
3             package Acme::Math::XS;
4             our $VERSION = '0.0.8';
5              
6 1     1   6 use Exporter 'import';
  1         6  
  1         57  
7             our @EXPORT = qw(add subtract);
8              
9 1     1   5 use XSLoader();
  1         1  
  1         39  
10             XSLoader::load 'Acme::Math::XS', $VERSION;
11              
12             1;