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 | 16 | use Moose; | |||
4 | 8 | ||||||
4 | 27 | ||||||
3 | 4 | 4 | 19825 | use MooseX::StrictConstructor; | |||
4 | 10 | ||||||
4 | 33 | ||||||
4 | 4 | 4 | 9263 | use Moose::Util::TypeConstraints; | |||
4 | 7 | ||||||
4 | 34 | ||||||
5 | 4 | 4 | 5639 | use namespace::autoclean; | |||
4 | 8 | ||||||
4 | 34 | ||||||
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; |