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;
2             # ABSTRACT: a series of blank lines
3             $Pod::Elemental::Element::Generic::Blank::VERSION = '0.103005';
4 13     13   96 use Moose;
  13         30  
  13         84  
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   83494 use namespace::autoclean;
  13         35  
  13         86  
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.103005
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 AUTHOR
46              
47             Ricardo SIGNES <rjbs@cpan.org>
48              
49             =head1 COPYRIGHT AND LICENSE
50              
51             This software is copyright (c) 2020 by Ricardo SIGNES.
52              
53             This is free software; you can redistribute it and/or modify it under
54             the same terms as the Perl 5 programming language system itself.
55              
56             =cut