| 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 | 27 | ||||||
| 3 | 4 | 4 | 18074 | use MooseX::StrictConstructor; | |||
| 4 | 6 | ||||||
| 4 | 27 | ||||||
| 4 | 4 | 4 | 7764 | use Moose::Util::TypeConstraints; | |||
| 4 | 6 | ||||||
| 4 | 29 | ||||||
| 5 | 4 | 4 | 4802 | use namespace::autoclean; | |||
| 4 | 6 | ||||||
| 4 | 30 | ||||||
| 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; |