File Coverage

blib/lib/DBIx/Class/Relationship/Helpers.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package # hide from PAUSE
2             DBIx::Class::Relationship::Helpers;
3              
4 379     379   185688 use strict;
  379         1267  
  379         10881  
5 379     379   2057 use warnings;
  379         1131  
  379         10567  
6              
7 379     379   2320 use base qw/DBIx::Class/;
  379         1179  
  379         44412  
8              
9             __PACKAGE__->load_components(qw/
10             Relationship::HasMany
11             Relationship::HasOne
12             Relationship::BelongsTo
13             Relationship::ManyToMany
14             /);
15              
16             1;