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