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 7     7   8501 use warnings;
  7         18  
  7         497  
5 7     7   40 use strict;
  7         14  
  7         284  
6              
7 7     7   35 use parent 'DBIx::DataModel::Schema::ResultAs';
  7         13  
  7         49  
8              
9             sub get_result {
10 103     103 1 242 my ($self, $statement) = @_;
11              
12 103         362 return $statement->all;
13             }
14              
15             1;
16              
17             __END__