blib/lib/WWW/Asana/Error.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::Error; | ||||||
2 | BEGIN { | ||||||
3 | 1 | 1 | 3009 | $WWW::Asana::Error::AUTHORITY = 'cpan:GETTY'; | |||
4 | } | ||||||
5 | { | ||||||
6 | $WWW::Asana::Error::VERSION = '0.003'; | ||||||
7 | } | ||||||
8 | # ABSTRACT: Asana Error Class | ||||||
9 | |||||||
10 | 1 | 1 | 55 | use MooX; | |||
1 | 3 | ||||||
1 | 12 | ||||||
11 | |||||||
12 | has message => ( | ||||||
13 | is => 'ro', | ||||||
14 | required => 1, | ||||||
15 | ); | ||||||
16 | |||||||
17 | has phrase => ( | ||||||
18 | is => 'ro', | ||||||
19 | predicate => 'has_phrase', | ||||||
20 | ); | ||||||
21 | |||||||
22 | 1; | ||||||
23 | __END__ |