File Coverage

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   14 use Moose;
  4         7  
  4         22  
3 4     4   16701 use MooseX::StrictConstructor;
  4         7  
  4         28  
4 4     4   7555 use Moose::Util::TypeConstraints;
  4         6  
  4         37  
5 4     4   4709 use namespace::autoclean;
  4         5  
  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;