blib/lib/Test/DBIx/Class/Example/Schema/Result.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 3 | 3 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 1 | 1 | 100.0 |
pod | n/a | ||
total | 4 | 4 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Test::DBIx::Class::Example::Schema::Result; { | ||||||
2 | |||||||
3 | 2 | 2 | 11 | use base 'DBIx::Class'; | |||
2 | 2 | ||||||
2 | 261 | ||||||
4 | |||||||
5 | __PACKAGE__->load_components(qw/ | ||||||
6 | PK::Auto | ||||||
7 | UUIDColumns | ||||||
8 | TimeStamp | ||||||
9 | InflateColumn::DateTime | ||||||
10 | Core | ||||||
11 | /); | ||||||
12 | |||||||
13 | __PACKAGE__->uuid_class('::Data::UUID'); | ||||||
14 | } 1 | ||||||
15 | |||||||
16 | __END__ |