File Coverage

blib/lib/Scalar/Random.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Scalar::Random;
2              
3 1     1   47721 use 5.010000;
  1         5  
  1         34  
4 1     1   4 use strict;
  1         2  
  1         29  
5 1     1   11 use warnings;
  1         6  
  1         99  
6              
7             require Exporter;
8              
9             our @ISA = qw(Exporter);
10              
11             our @EXPORT = qw(
12             randomize
13             );
14              
15             our $VERSION = '0.02';
16              
17             require XSLoader;
18             XSLoader::load('Scalar::Random', $VERSION);
19              
20             1;
21             __END__