| blib/lib/Git/PurePerl/Actor.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 12 | 12 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 4 | 4 | 100.0 |
| pod | n/a | ||
| total | 16 | 16 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Git::PurePerl::Actor; | ||||||
| 2 | 4 | 4 | 14 | use Moose; | |||
| 4 | 5 | ||||||
| 4 | 34 | ||||||
| 3 | 4 | 4 | 17839 | use MooseX::StrictConstructor; | |||
| 4 | 6 | ||||||
| 4 | 30 | ||||||
| 4 | 4 | 4 | 7566 | use Moose::Util::TypeConstraints; | |||
| 4 | 6 | ||||||
| 4 | 33 | ||||||
| 5 | 4 | 4 | 4755 | use namespace::autoclean; | |||
| 4 | 4 | ||||||
| 4 | 32 | ||||||
| 6 | |||||||
| 7 | has 'name' => ( is => 'ro', isa => 'Str', required => 1 ); | ||||||
| 8 | has 'email' => ( is => 'ro', isa => 'Str', required => 1 ); | ||||||
| 9 | |||||||
| 10 | __PACKAGE__->meta->make_immutable; | ||||||
| 11 | |||||||
| 12 | 1; |