File Coverage

blib/lib/Pod/Weaver/Config/Finder.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Pod::Weaver::Config::Finder;
2             # ABSTRACT: the reader for weaver.ini files
3             $Pod::Weaver::Config::Finder::VERSION = '4.017';
4 10     10   83 use Moose;
  10         27  
  10         108  
5             extends 'Config::MVP::Reader::Finder';
6             with 'Pod::Weaver::Config';
7              
8 10     10   78597 use namespace::autoclean;
  10         28  
  10         141  
9              
10             sub default_search_path {
11 1     1 1 23 return qw(Pod::Weaver::Config Config::MVP::Reader);
12             }
13              
14             __PACKAGE__->meta->make_immutable;
15             1;
16              
17             __END__
18              
19             =pod
20              
21             =encoding UTF-8
22              
23             =head1 NAME
24              
25             Pod::Weaver::Config::Finder - the reader for weaver.ini files
26              
27             =head1 VERSION
28              
29             version 4.017
30              
31             =head1 AUTHOR
32              
33             Ricardo SIGNES <rjbs@cpan.org>
34              
35             =head1 COPYRIGHT AND LICENSE
36              
37             This software is copyright (c) 2021 by Ricardo SIGNES.
38              
39             This is free software; you can redistribute it and/or modify it under
40             the same terms as the Perl 5 programming language system itself.
41              
42             =cut