| blib/lib/Text/Xslate/PP/Type/Pair.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % | 
| statement | 6 | 6 | 100.0 | 
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 2 | 2 | 100.0 | 
| pod | n/a | ||
| total | 8 | 8 | 100.0 | 
| line | stmt | bran | cond | sub | pod | time | code | 
|---|---|---|---|---|---|---|---|
| 1 | package Text::Xslate::PP::Type::Pair; | ||||||
| 2 | 1 | 1 | 5 | use Mouse; | |||
| 1 | 1 | ||||||
| 1 | 6 | ||||||
| 3 | |||||||
| 4 | has [qw(key value)] => ( | ||||||
| 5 | is => 'rw', | ||||||
| 6 | required => 1, | ||||||
| 7 | ); | ||||||
| 8 | |||||||
| 9 | 1 | 1 | 291 | no Mouse; | |||
| 1 | 2 | ||||||
| 1 | 4 | ||||||
| 10 | __PACKAGE__->meta->make_immutable(); | ||||||
| 11 | __END__ |