File Coverage

blib/lib/Git/Repository/Plugin/FileHistory.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 18 21 85.7


line stmt bran cond sub pod time code
1             package Git::Repository::Plugin::FileHistory;
2 1     1   43879 use strict;
  1         3  
  1         31  
3 1     1   5 use warnings;
  1         1  
  1         29  
4              
5 1     1   4 use parent 'Git::Repository::Plugin';
  1         1  
  1         11  
6 1     1   30 sub _keywords { qw/file_history/ }
7              
8 1     1   1164 use Git::Repository::FileHistory;
  1         1  
  1         48  
9              
10             our $VERSION = '0.06';
11              
12             sub file_history {
13 0     0 0   Git::Repository::FileHistory->new(@_);
14             }
15              
16             1;