lib/DR/TarantoolQueue/JSE.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 15 | 15 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | n/a | ||
total | 20 | 20 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package DR::TarantoolQueue::JSE; | ||||||
2 | 5 | 5 | 3331 | use Mouse::Role; | |||
5 | 5705 | ||||||
5 | 20 | ||||||
3 | 5 | 5 | 1518 | use utf8; | |||
5 | 11 | ||||||
5 | 25 | ||||||
4 | 5 | 5 | 118 | use strict; | |||
5 | 9 | ||||||
5 | 108 | ||||||
5 | 5 | 5 | 30 | use warnings; | |||
5 | 12 | ||||||
5 | 196 | ||||||
6 | 5 | 5 | 1225 | use DR::TarantoolQueue::PackUnpack; | |||
5 | 462 | ||||||
5 | 352 | ||||||
7 | |||||||
8 | |||||||
9 | has jse => ( | ||||||
10 | is => 'ro', | ||||||
11 | isa => 'Object', | ||||||
12 | lazy => 1, | ||||||
13 | builder => sub { | ||||||
14 | DR::TarantoolQueue::PackUnpack->new | ||||||
15 | } | ||||||
16 | ); | ||||||
17 | |||||||
18 | |||||||
19 | |||||||
20 | |||||||
21 | |||||||
22 | 1; |