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   3523 use warnings;
  5         15  
  5         203  
5 5     5   35 use strict;
  5         10  
  5         130  
6              
7 5     5   28 use parent 'DBIx::DataModel::Schema::ResultAs';
  5         10  
  5         45  
8              
9             sub get_result {
10 85     85 1 208 my ($self, $statement) = @_;
11              
12 85         274 return $statement->all;
13             }
14              
15             1;
16              
17             __END__