| blib/lib/Git/PurePerl/Object/Blob.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::Object::Blob; | ||||||
| 2 | 4 | 4 | 15 | use Moose; | |||
| 4 | 7 | ||||||
| 4 | 20 | ||||||
| 3 | 4 | 4 | 15727 | use MooseX::StrictConstructor; | |||
| 4 | 6 | ||||||
| 4 | 23 | ||||||
| 4 | 4 | 4 | 7139 | use Moose::Util::TypeConstraints; | |||
| 4 | 6 | ||||||
| 4 | 44 | ||||||
| 5 | 4 | 4 | 4738 | use namespace::autoclean; | |||
| 4 | 6 | ||||||
| 4 | 27 | ||||||
| 6 | |||||||
| 7 | extends 'Git::PurePerl::Object'; | ||||||
| 8 | |||||||
| 9 | has 'kind' => | ||||||
| 10 | ( is => 'ro', isa => 'ObjectKind', required => 1, default => 'blob' ); | ||||||
| 11 | |||||||
| 12 | __PACKAGE__->meta->make_immutable; | ||||||
| 13 | |||||||
| 14 | 1; |