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