File Coverage

blib/lib/DBIx/DataModel/Schema/ResultAs/Sth.pm
Criterion Covered Total %
statement 16 16 100.0
branch 1 2 50.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 23 24 95.8


line stmt bran cond sub pod time code
1             #----------------------------------------------------------------------
2             package DBIx::DataModel::Schema::ResultAs::Sth;
3             #----------------------------------------------------------------------
4 1     1   10410 use warnings;
  1         4  
  1         100  
5 1     1   8 use strict;
  1         2  
  1         34  
6 1     1   6 use DBIx::DataModel::Carp;
  1         3  
  1         12  
7              
8 1     1   75 use parent 'DBIx::DataModel::Schema::ResultAs';
  1         3  
  1         8  
9              
10             sub get_result {
11 1     1 1 3 my ($self, $statement) = @_;
12              
13 1         6 $statement->execute;
14 1 50       5 not $statement->arg(-post_bless)
15             or croak "-post_bless incompatible with -result_as=>'sth'";
16 1         5 return $statement->sth;
17             }
18              
19             1;
20              
21             __END__