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   3945 use strict;
  7         18  
  7         203  
5 7     7   52 use warnings;
  7         15  
  7         207  
6 7     7   39 use DBIx::DataModel::Meta::Utils qw/define_abstract_methods/;
  7         15  
  7         385  
7              
8 7     7   44 use Carp::Clan qw[^(DBIx::DataModel::|SQL::Abstract)];
  7         15  
  7         49  
9              
10             define_abstract_methods(__PACKAGE__, qw/get_result/);
11              
12             sub new {
13 127     127 0 256 my $class = shift;
14              
15 127         398 return bless {@_}, $class;
16             }
17              
18             1;
19              
20             __END__