File Coverage

blib/lib/DBIx/DataModel/Schema/ResultAs/Sql.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::Sql;
3             #----------------------------------------------------------------------
4 1     1   567 use warnings;
  1         3  
  1         34  
5 1     1   6 use strict;
  1         2  
  1         22  
6 1     1   5 use DBIx::DataModel::Statement;
  1         3  
  1         27  
7              
8 1     1   5 use parent 'DBIx::DataModel::Schema::ResultAs';
  1         2  
  1         5  
9              
10             sub get_result {
11 2     2 1 6 my ($self, $statement) = @_;
12              
13 2         8 $statement->_forbid_callbacks(__PACKAGE__);
14 2 50       5 $statement->sqlize if $statement->status < DBIx::DataModel::Statement::SQLIZED;
15              
16 2         8 return $statement->sql;
17             }
18              
19             1;
20              
21             __END__