| blib/lib/Hash/Fold/Error.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 3 | 3 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 1 | 1 | 100.0 |
| pod | n/a | ||
| total | 4 | 4 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Hash::Fold::Error; | ||||||
| 2 | |||||||
| 3 | 2 | 2 | 16 | use Moo; | |||
| 2 | 4 | ||||||
| 2 | 13 | ||||||
| 4 | |||||||
| 5 | extends 'Throwable::Error'; | ||||||
| 6 | |||||||
| 7 | has path => ( | ||||||
| 8 | is => 'ro', | ||||||
| 9 | ); | ||||||
| 10 | |||||||
| 11 | has type => ( | ||||||
| 12 | is => 'ro', | ||||||
| 13 | ); | ||||||
| 14 | |||||||
| 15 | 1; | ||||||
| 16 | |||||||
| 17 | __END__ |