| blib/lib/WWW/Asana/Role/HasResponse.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 4 | 4 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 2 | 2 | 100.0 |
| pod | n/a | ||
| total | 6 | 6 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package WWW::Asana::Role::HasResponse; | ||||||
| 2 | BEGIN { | ||||||
| 3 | 1 | 1 | 814 | $WWW::Asana::Role::HasResponse::AUTHORITY = 'cpan:GETTY'; | |||
| 4 | } | ||||||
| 5 | { | ||||||
| 6 | $WWW::Asana::Role::HasResponse::VERSION = '0.003'; | ||||||
| 7 | } | ||||||
| 8 | # ABSTRACT: | ||||||
| 9 | |||||||
| 10 | 1 | 1 | 9 | use MooX::Role; | |||
| 1 | 2 | ||||||
| 1 | 9 | ||||||
| 11 | |||||||
| 12 | has response => ( | ||||||
| 13 | is => 'ro', | ||||||
| 14 | predicate => 'has_response', | ||||||
| 15 | ); | ||||||
| 16 | |||||||
| 17 | 1; | ||||||
| 18 | __END__ |