File Coverage

blib/lib/DBIx/DataModel/Schema/ResultAs.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1             #----------------------------------------------------------------------
2             package DBIx::DataModel::Schema::ResultAs;
3             #----------------------------------------------------------------------
4 7     7   3339 use strict;
  7         16  
  7         164  
5 7     7   30 use warnings;
  7         14  
  7         168  
6 7     7   32 use DBIx::DataModel::Meta::Utils qw/define_abstract_methods/;
  7         13  
  7         260  
7              
8 7     7   32 use Carp::Clan qw[^(DBIx::DataModel::|SQL::Abstract)];
  7         14  
  7         38  
9              
10             define_abstract_methods(__PACKAGE__, qw/get_result/);
11              
12             sub new {
13 127     127 0 196 my $class = shift;
14              
15 127         296 return bless {@_}, $class;
16             }
17              
18             1;
19              
20             __END__