File Coverage

blib/lib/Path/IsDev/HeuristicSet/Basic.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 2 2 100.0
total 25 25 100.0


line stmt bran cond sub pod time code
1 12     12   5117 use 5.008;
  12         27  
2 12     12   43 use strict;
  12         16  
  12         235  
3 12     12   42 use warnings;
  12         16  
  12         316  
4 12     12   498 use utf8;
  12         21  
  12         55  
5              
6             package Path::IsDev::HeuristicSet::Basic;
7              
8             our $VERSION = '1.001003';
9              
10             # ABSTRACT: Basic IsDev set of Heuristics
11              
12             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
13              
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26 12     12   4809 use Role::Tiny::With qw( with );
  12         42299  
  12         1183  
27             with 'Path::IsDev::Role::HeuristicSet::Simple';
28              
29              
30              
31              
32              
33              
34              
35              
36              
37              
38              
39              
40              
41              
42              
43              
44              
45             sub negative_heuristics {
46 16     16 1 44 return qw( IsDev::IgnoreFile HomeDir PerlINC );
47             }
48              
49              
50              
51              
52              
53              
54              
55              
56              
57              
58              
59              
60              
61              
62              
63              
64              
65              
66              
67              
68              
69              
70              
71              
72              
73              
74              
75              
76              
77              
78              
79             sub heuristics {
80 16     16 1 59 return qw(
81             Tool::Dzil Tool::MakeMaker Tool::ModuleBuild
82             META Changelog TestDir DevDirMarker MYMETA Makefile
83             VCS::Git
84             );
85             }
86              
87             1;
88              
89             __END__