File Coverage

blib/lib/Database/Async/StatementHandle.pm
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 12 66.6


line stmt bran cond sub pod time code
1             package Database::Async::StatementHandle;
2              
3 2     2   14 use strict;
  2         4  
  2         59  
4 2     2   10 use warnings;
  2         3  
  2         147  
5              
6             our $VERSION = '0.016'; # VERSION
7              
8 0     0 0   sub new { my $class = shift; bless { @_ }, $class }
  0            
9              
10             1;
11