File Coverage

lib/Git/Lint/Check.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Git::Lint::Check;
2              
3 11     11   4263 use strict;
  11         20  
  11         259  
4 11     11   49 use warnings;
  11         19  
  11         752  
5              
6             our $VERSION = '0.016';
7              
8             sub new {
9 27     27 1 86906 my $class = shift;
10 27         60 my $self = {};
11              
12 27         52 bless $self, $class;
13              
14 27         64 return $self;
15             }
16              
17             1;
18              
19             __END__