File Coverage

blib/lib/DBIx/DataModel/Schema/ResultAs/Fast_statement.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             #----------------------------------------------------------------------
2             package DBIx::DataModel::Schema::ResultAs::Fast_statement;
3             #----------------------------------------------------------------------
4 1     1   482 use warnings;
  1         2  
  1         30  
5 1     1   5 use strict;
  1         2  
  1         27  
6              
7 1     1   4 use parent 'DBIx::DataModel::Schema::ResultAs';
  1         1  
  1         5  
8              
9             sub get_result {
10 1     1 1 3 my ($self, $statement) = @_;
11              
12 1         3 $statement->execute;
13 1         6 $statement->make_fast;
14 1         9 return $statement;
15             }
16              
17             1;
18              
19             __END__