blib/lib/DBIx/Class/Core.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 DBIx::Class::Core; | ||||||
2 | |||||||
3 | 312 | 312 | 665340 | use strict; | |||
312 | 903 | ||||||
312 | 9149 | ||||||
4 | 312 | 312 | 2133 | use warnings; | |||
312 | 722 | ||||||
312 | 8734 | ||||||
5 | |||||||
6 | 312 | 312 | 14241 | use base qw/DBIx::Class/; | |||
312 | 846 | ||||||
312 | 54871 | ||||||
7 | |||||||
8 | __PACKAGE__->load_components(qw/ | ||||||
9 | Relationship | ||||||
10 | InflateColumn | ||||||
11 | PK::Auto | ||||||
12 | PK | ||||||
13 | Row | ||||||
14 | ResultSourceProxy::Table | ||||||
15 | /); | ||||||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |