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 | 20 | use Moose; | |||
4 | 6 | ||||||
4 | 33 | ||||||
3 | 4 | 4 | 23557 | use MooseX::StrictConstructor; | |||
4 | 9 | ||||||
4 | 34 | ||||||
4 | 4 | 4 | 10096 | use Moose::Util::TypeConstraints; | |||
4 | 8 | ||||||
4 | 34 | ||||||
5 | 4 | 4 | 6498 | use namespace::autoclean; | |||
4 | 8 | ||||||
4 | 35 | ||||||
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; |