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 312     312   107257 use strict;
  312         730  
  312         9572  
5 312     312   1712 use warnings;
  312         650  
  312         9856  
6              
7 312     312   1765 use base qw/DBIx::Class/;
  312         635  
  312         31875  
8              
9             __PACKAGE__->load_components(qw/
10             Relationship::HasMany
11             Relationship::HasOne
12             Relationship::BelongsTo
13             Relationship::ManyToMany
14             /);
15              
16             1;