File Coverage

blib/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 12     12   6134 use strict;
  12         24  
  12         312  
4 12     12   51 use warnings;
  12         19  
  12         846  
5              
6             our $VERSION = '0.015';
7              
8             sub new {
9 27     27 1 83179 my $class = shift;
10 27         56 my $self = {};
11              
12 27         51 bless $self, $class;
13              
14 27         54 return $self;
15             }
16              
17             1;
18              
19             __END__