File Coverage

blib/lib/Pod/Weaver/PluginBundle/CorePrep.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1 9     9   18953 use strict;
  9         30  
  9         364  
2 9     9   79 use warnings;
  9         22  
  9         522  
3             package Pod::Weaver::PluginBundle::CorePrep;
4             # ABSTRACT: a bundle for the most commonly-needed prep work for a pod document
5             $Pod::Weaver::PluginBundle::CorePrep::VERSION = '4.017';
6 9     9   4320 use Pod::Weaver::Plugin::H1Nester;
  9         32  
  9         823  
7              
8             sub mvp_bundle_config {
9             return (
10 29     29 0 89074 [ '@CorePrep/EnsurePod5', 'Pod::Weaver::Plugin::EnsurePod5', {} ],
11             # dialects should run here
12             [ '@CorePrep/H1Nester', 'Pod::Weaver::Plugin::H1Nester', {} ],
13             );
14             }
15              
16             1;
17              
18             __END__
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             Pod::Weaver::PluginBundle::CorePrep - a bundle for the most commonly-needed prep work for a pod document
27              
28             =head1 VERSION
29              
30             version 4.017
31              
32             =head1 AUTHOR
33              
34             Ricardo SIGNES <rjbs@cpan.org>
35              
36             =head1 COPYRIGHT AND LICENSE
37              
38             This software is copyright (c) 2021 by Ricardo SIGNES.
39              
40             This is free software; you can redistribute it and/or modify it under
41             the same terms as the Perl 5 programming language system itself.
42              
43             =cut