File Coverage

blib/lib/Sub/Boolean.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1 1     1   67473 use 5.008001;
  1         4  
2 1     1   4 use strict;
  1         3  
  1         22  
3 1     1   4 use warnings;
  1         2  
  1         98  
4              
5             package Sub::Boolean;
6              
7             our $AUTHORITY = 'cpan:TOBYINK';
8             our $VERSION = '0.001';
9              
10             require XSLoader;
11             XSLoader::load(__PACKAGE__, $VERSION);
12              
13 1     1   453 use Exporter::Shiny qw( make_true make_false make_undef make_empty );
  1         4704  
  1         7  
14              
15             1;
16              
17             __END__