blib/lib/CloudHealth/API/HTTPResponse.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 CloudHealth::API::HTTPResponse; | ||||||
2 | 2 | 2 | 697 | use Moo; | |||
2 | 5 | ||||||
2 | 21 | ||||||
3 | 2 | 2 | 704 | use Types::Standard qw/Str Int/; | |||
2 | 4 | ||||||
2 | 27 | ||||||
4 | |||||||
5 | has content => (is => 'ro', isa => Str); | ||||||
6 | has status => (is => 'ro', isa => Int); | ||||||
7 | |||||||
8 | 1; |