File Coverage

blib/lib/Pod/Elemental/Element/Generic/Blank.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 11 72.7


line stmt bran cond sub pod time code
1             package Pod::Elemental::Element::Generic::Blank 0.103006;
2             # ABSTRACT: a series of blank lines
3              
4 13     13   79 use Moose;
  13         29  
  13         72  
5             with 'Pod::Elemental::Flat';
6              
7             #pod =head1 OVERVIEW
8             #pod
9             #pod Generic::Blank elements represent vertical whitespace in a Pod document. For
10             #pod the most part, these are meant to be placeholders until made unnecessary by the
11             #pod Pod5 transformer. Most end-users will never need to worry about these
12             #pod elements.
13             #pod
14             #pod =cut
15              
16 13     13   72601 use namespace::autoclean;
  13         30  
  13         89  
17              
18 0     0 0   sub as_debug_string { '|' }
19              
20             __PACKAGE__->meta->make_immutable;
21              
22             1;
23              
24             __END__
25              
26             =pod
27              
28             =encoding UTF-8
29              
30             =head1 NAME
31              
32             Pod::Elemental::Element::Generic::Blank - a series of blank lines
33              
34             =head1 VERSION
35              
36             version 0.103006
37              
38             =head1 OVERVIEW
39              
40             Generic::Blank elements represent vertical whitespace in a Pod document. For
41             the most part, these are meant to be placeholders until made unnecessary by the
42             Pod5 transformer. Most end-users will never need to worry about these
43             elements.
44              
45             =head1 PERL VERSION
46              
47             This library should run on perls released even a long time ago. It should work
48             on any version of perl released in the last five years.
49              
50             Although it may work on older versions of perl, no guarantee is made that the
51             minimum required version will not be increased. The version may be increased
52             for any reason, and there is no promise that patches will be accepted to lower
53             the minimum required perl.
54              
55             =head1 AUTHOR
56              
57             Ricardo SIGNES <cpan@semiotic.systems>
58              
59             =head1 COPYRIGHT AND LICENSE
60              
61             This software is copyright (c) 2022 by Ricardo SIGNES.
62              
63             This is free software; you can redistribute it and/or modify it under
64             the same terms as the Perl 5 programming language system itself.
65              
66             =cut