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