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 9     9   6425 use strict;
  9         23  
  9         365  
5 9     9   47 use warnings;
  9         32  
  9         496  
6 9     9   48 use DBIx::DataModel::Meta::Utils qw/define_abstract_methods/;
  9         16  
  9         556  
7              
8 9     9   47 use DBIx::DataModel::Carp;
  9         26  
  9         62  
9              
10             define_abstract_methods(__PACKAGE__, qw/get_result/);
11              
12             sub new {
13 144     144 0 271 my $class = shift;
14              
15 144         444 return bless {@_}, $class;
16             }
17              
18             1;
19              
20             __END__