File Coverage

blib/lib/Path/IsDev/Heuristic/VCS/Git.pm
Criterion Covered Total %
statement 18 20 90.0
branch 1 2 50.0
condition n/a
subroutine 7 7 100.0
pod 2 2 100.0
total 28 31 90.3


line stmt bran cond sub pod time code
1 4     4   1431 use 5.008; # utf8
  4         8  
2 4     4   13 use strict;
  4         4  
  4         68  
3 4     4   14 use warnings;
  4         6  
  4         76  
4 4     4   480 use utf8;
  4         10  
  4         18  
5              
6             package Path::IsDev::Heuristic::VCS::Git;
7              
8             our $VERSION = '1.001003';
9              
10              
11              
12              
13              
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25             # ABSTRACT: Determine if a path contains a .git repository
26              
27             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
28              
29 4     4   561 use Role::Tiny::With qw( with );
  4         3544  
  4         464  
30              
31             with 'Path::IsDev::Role::Heuristic', 'Path::IsDev::Role::Matcher::Child::Exists::Any::Dir';
32              
33              
34              
35              
36              
37              
38              
39              
40              
41 3     3 1 9 sub dirs { return qw( .git ) }
42              
43              
44              
45              
46              
47              
48              
49             sub matches {
50 3     3 1 5 my ( $self, $result_object ) = @_;
51 3 50       7 if ( $self->child_exists_any_dir( $result_object, $self->dirs ) ) {
52 0         0 $result_object->result(1);
53 0         0 return 1;
54             }
55 3         10 return;
56             }
57              
58             1;
59              
60             __END__