File Coverage

blib/lib/Hazy/Cosmic/Jive.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 Hazy::Cosmic::Jive;
2             require Exporter;
3             @ISA = qw(Exporter);
4             @EXPORT_OK = qw/float_to_string/;
5             %EXPORT_TAGS = (
6             all => \@EXPORT_OK,
7             );
8 1     1   22361 use warnings;
  1         3  
  1         32  
9 1     1   5 use strict;
  1         1  
  1         24  
10 1     1   4 use Carp;
  1         6  
  1         123  
11             our $VERSION = '0.02';
12             require XSLoader;
13             XSLoader::load ('Hazy::Cosmic::Jive', $VERSION);
14             1;