File Coverage

blib/lib/Cogit/Object/Blob.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Cogit::Object::Blob;
2             $Cogit::Object::Blob::VERSION = '0.001001';
3 4     4   18 use Moo;
  4         4  
  4         31  
4 4     4   7875 use namespace::clean;
  4         6  
  4         28  
5              
6             extends 'Cogit::Object';
7              
8             has '+kind' => ( default => sub { 'blob' } );
9              
10             1;
11              
12             __END__
13              
14             =pod
15              
16             =encoding UTF-8
17              
18             =head1 NAME
19              
20             Cogit::Object::Blob
21              
22             =head1 VERSION
23              
24             version 0.001001
25              
26             =head1 AUTHOR
27              
28             Arthur Axel "fREW" Schmidt <cogit@afoolishmanifesto.com>
29              
30             =head1 COPYRIGHT AND LICENSE
31              
32             This software is copyright (c) 2017 by Arthur Axel "fREW" Schmidt.
33              
34             This is free software; you can redistribute it and/or modify it under
35             the same terms as the Perl 5 programming language system itself.
36              
37             =cut