File Coverage

blib/lib/Pod/Weaver/PluginBundle/CorePrep.pm
Criterion Covered Total %
statement 24 24 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod 0 1 0.0
total 33 34 97.0


line stmt bran cond sub pod time code
1 9     9   17771 use strict;
  9         23  
  9         315  
2 9     9   51 use warnings;
  9         23  
  9         468  
3             package Pod::Weaver::PluginBundle::CorePrep 4.019;
4             # ABSTRACT: a bundle for the most commonly-needed prep work for a pod document
5              
6             # BEGIN BOILERPLATE
7 9     9   100 use v5.20.0;
  9         33  
8 9     9   52 use warnings;
  9         19  
  9         276  
9 9     9   50 use utf8;
  9         27  
  9         56  
10 9     9   396 no feature 'switch';
  9         29  
  9         935  
11 9     9   67 use experimental qw(postderef postderef_qq); # This experiment gets mainlined.
  9         18  
  9         79  
12             # END BOILERPLATE
13              
14 9     9   5358 use Pod::Weaver::Plugin::H1Nester;
  9         35  
  9         990  
15              
16             sub mvp_bundle_config {
17             return (
18 29     29 0 86236 [ '@CorePrep/EnsurePod5', 'Pod::Weaver::Plugin::EnsurePod5', {} ],
19             # dialects should run here
20             [ '@CorePrep/H1Nester', 'Pod::Weaver::Plugin::H1Nester', {} ],
21             );
22             }
23              
24             1;
25              
26             __END__
27              
28             =pod
29              
30             =encoding UTF-8
31              
32             =head1 NAME
33              
34             Pod::Weaver::PluginBundle::CorePrep - a bundle for the most commonly-needed prep work for a pod document
35              
36             =head1 VERSION
37              
38             version 4.019
39              
40             =head1 PERL VERSION
41              
42             This module should work on any version of perl still receiving updates from
43             the Perl 5 Porters. This means it should work on any version of perl released
44             in the last two to three years. (That is, if the most recently released
45             version is v5.40, then this module should work on both v5.40 and v5.38.)
46              
47             Although it may work on older versions of perl, no guarantee is made that the
48             minimum required version will not be increased. The version may be increased
49             for any reason, and there is no promise that patches will be accepted to lower
50             the minimum required perl.
51              
52             =head1 AUTHOR
53              
54             Ricardo SIGNES <cpan@semiotic.systems>
55              
56             =head1 COPYRIGHT AND LICENSE
57              
58             This software is copyright (c) 2023 by Ricardo SIGNES.
59              
60             This is free software; you can redistribute it and/or modify it under
61             the same terms as the Perl 5 programming language system itself.
62              
63             =cut