File Coverage

blib/lib/Path/IsDev/Heuristic/MYMETA.pm
Criterion Covered Total %
statement 20 20 100.0
branch 2 2 100.0
condition n/a
subroutine 7 7 100.0
pod 2 2 100.0
total 31 31 100.0


line stmt bran cond sub pod time code
1 5     5   1881 use 5.008; # utf8
  5         15  
2 5     5   18 use strict;
  5         6  
  5         88  
3 5     5   19 use warnings;
  5         7  
  5         119  
4 5     5   649 use utf8;
  5         14  
  5         19  
5              
6             package Path::IsDev::Heuristic::MYMETA;
7              
8             our $VERSION = '1.001003';
9              
10             # ABSTRACT: Determine if a path contains MYMETA.(json|yml)
11              
12             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
13              
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26              
27              
28              
29 5     5   620 use Role::Tiny::With qw( with );
  5         3615  
  5         546  
30             with 'Path::IsDev::Role::Heuristic', 'Path::IsDev::Role::Matcher::Child::Exists::Any::File';
31              
32              
33              
34              
35              
36              
37              
38              
39              
40              
41             sub files {
42 4     4 1 13 return qw( MYMETA.json MYMETA.yml );
43             }
44              
45              
46              
47              
48              
49              
50              
51             sub matches {
52 4     4 1 5 my ( $self, $result_object ) = @_;
53 4 100       11 if ( $self->child_exists_any_file( $result_object, $self->files ) ) {
54 1         16 $result_object->result(1);
55 1         6 return 1;
56             }
57 3         9 return;
58             }
59              
60             1;
61              
62             __END__