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 7     7   231950 use strict;
  7         17  
  7         322  
4 7     7   40 use warnings;
  7         33  
  7         937  
5              
6             our $VERSION = '0.019'; # VERSION
7              
8 0     0 0   sub new { my $class = shift; bless { @_ }, $class }
  0            
9              
10             1;
11