File Coverage

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


line stmt bran cond sub pod time code
1             #----------------------------------------------------------------------
2             package DBIx::DataModel::Schema::ResultAs::Rows;
3             #----------------------------------------------------------------------
4 5     5   4176 use warnings;
  5         19  
  5         206  
5 5     5   37 use strict;
  5         13  
  5         145  
6              
7 5     5   34 use parent 'DBIx::DataModel::Schema::ResultAs';
  5         11  
  5         44  
8              
9             sub get_result {
10 85     85 1 211 my ($self, $statement) = @_;
11              
12 85         240 return $statement->all;
13             }
14              
15             1;
16              
17             __END__