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   4975 use strict;
  11         23  
  11         362  
4 11     11   49 use warnings;
  11         20  
  11         966  
5              
6             our $VERSION = '0.014';
7              
8             sub new {
9 27     27 1 84084 my $class = shift;
10 27         61 my $self = {};
11              
12 27         59 bless $self, $class;
13              
14 27         68 return $self;
15             }
16              
17             1;
18              
19             __END__