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   18079 use strict;
  9         38  
  9         303  
2 9     9   49 use warnings;
  9         20  
  9         404  
3             package Pod::Weaver::PluginBundle::CorePrep 4.018;
4             # ABSTRACT: a bundle for the most commonly-needed prep work for a pod document
5              
6             # BEGIN BOILERPLATE
7 9     9   91 use v5.20.0;
  9         32  
8 9     9   48 use warnings;
  9         19  
  9         242  
9 9     9   47 use utf8;
  9         17  
  9         56  
10 9     9   373 no feature 'switch';
  9         28  
  9         992  
11 9     9   64 use experimental qw(postderef postderef_qq); # This experiment gets mainlined.
  9         18  
  9         62  
12             # END BOILERPLATE
13              
14 9     9   5310 use Pod::Weaver::Plugin::H1Nester;
  9         35  
  9         873  
15              
16             sub mvp_bundle_config {
17             return (
18 29     29 0 85178 [ '@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.018
39              
40             =head1 PERL VERSION SUPPORT
41              
42             This module has the same support period as perl itself: it supports the two
43             most recent versions of perl. (That is, if the most recently released version
44             is v5.40, then this module should work on both v5.40 and v5.38.)
45              
46             Although it may work on older versions of perl, no guarantee is made that the
47             minimum required version will not be increased. The version may be increased
48             for any reason, and there is no promise that patches will be accepted to lower
49             the minimum required perl.
50              
51             =head1 AUTHOR
52              
53             Ricardo SIGNES <rjbs@semiotic.systems>
54              
55             =head1 COPYRIGHT AND LICENSE
56              
57             This software is copyright (c) 2021 by Ricardo SIGNES.
58              
59             This is free software; you can redistribute it and/or modify it under
60             the same terms as the Perl 5 programming language system itself.
61              
62             =cut