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   961 use warnings;
  1         3  
  1         105  
5 1     1   8 use strict;
  1         3  
  1         36  
6              
7 1     1   7 use parent 'DBIx::DataModel::Schema::ResultAs';
  1         2  
  1         10  
8              
9             sub get_result {
10 1     1 1 4 my ($self, $statement) = @_;
11              
12 1         7 $statement->execute;
13 1         6 $statement->make_fast;
14 1         17 return $statement;
15             }
16              
17             1;
18              
19             __END__