| /tmp/W74rLRJ5T6 | |||
|---|---|---|---|
| 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 MyPerson; | ||||||
| 2 | 2 | 2 | 4894341 | use Mite::Shim; | |||
| 2 | 8 | ||||||
| 2 | 23 | ||||||
| 3 | has first_name => | ||||||
| 4 | is => 'rw', | ||||||
| 5 | alias => 'given_name', | ||||||
| 6 | required => 1; | ||||||
| 7 | has last_name => | ||||||
| 8 | is => 'rwp', | ||||||
| 9 | alias => [ 'family_name', 'surname' ], | ||||||
| 10 | required => 1; | ||||||
| 11 | has age => | ||||||
| 12 | is => 'ro', | ||||||
| 13 | alias => []; | ||||||
| 14 | has height => | ||||||
| 15 | is => 'ro', | ||||||
| 16 | alias => undef; | ||||||
| 17 | 1; |