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   257807 use strict;
  11         28  
  11         395  
4 11     11   52 use warnings;
  11         40  
  11         1208  
5              
6             our $VERSION = '1.000';
7              
8             sub new {
9 27     27 1 95240 my $class = shift;
10 27         66 my $self = {};
11              
12 27         82 bless $self, $class;
13              
14 27         69 return $self;
15             }
16              
17             1;
18              
19             __END__