blib/lib/MR/IProto/NoResponse.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 6 | 6 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 2 | 2 | 100.0 |
pod | n/a | ||
total | 8 | 8 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package MR::IProto::NoResponse; | ||||||
2 | |||||||
3 | =head1 NAME | ||||||
4 | |||||||
5 | MR::IProto::NoResponse - no response | ||||||
6 | |||||||
7 | =head1 DESCRIPTION | ||||||
8 | |||||||
9 | Base class used to mark messages with no response. | ||||||
10 | |||||||
11 | =cut | ||||||
12 | |||||||
13 | 1 | 1 | 4892 | use Mouse; | |||
1 | 2 | ||||||
1 | 12 | ||||||
14 | extends 'MR::IProto::Response'; | ||||||
15 | |||||||
16 | has '+data' => ( | ||||||
17 | isa => 'Undef', | ||||||
18 | ); | ||||||
19 | |||||||
20 | 1 | 1 | 391 | no Mouse; | |||
1 | 49 | ||||||
1 | 7 | ||||||
21 | __PACKAGE__->meta->make_immutable(); | ||||||
22 | |||||||
23 | 1; |