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 4.018;
2             # ABSTRACT: the reader for weaver.ini files
3              
4 10     10   75 use Moose;
  10         24  
  10         97  
5             extends 'Config::MVP::Reader::Finder';
6             with 'Pod::Weaver::Config';
7              
8 10     10   73128 use namespace::autoclean;
  10         25  
  10         113  
9              
10             sub default_search_path {
11 1     1 1 25 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.018
30              
31             =head1 PERL VERSION SUPPORT
32              
33             This module has the same support period as perl itself: it supports the two
34             most recent versions of perl. (That is, if the most recently released version
35             is v5.40, then this module should work on both v5.40 and v5.38.)
36              
37             Although it may work on older versions of perl, no guarantee is made that the
38             minimum required version will not be increased. The version may be increased
39             for any reason, and there is no promise that patches will be accepted to lower
40             the minimum required perl.
41              
42             =head1 AUTHOR
43              
44             Ricardo SIGNES <rjbs@semiotic.systems>
45              
46             =head1 COPYRIGHT AND LICENSE
47              
48             This software is copyright (c) 2021 by Ricardo SIGNES.
49              
50             This is free software; you can redistribute it and/or modify it under
51             the same terms as the Perl 5 programming language system itself.
52              
53             =cut