File Coverage

blib/lib/Pod/Elemental/Element/Pod5/Ordinary.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Pod::Elemental::Element::Pod5::Ordinary;
2             # ABSTRACT: a Pod5 ordinary text paragraph
3             $Pod::Elemental::Element::Pod5::Ordinary::VERSION = '0.103005';
4 13     13   1279 use Moose;
  13         31  
  13         95  
5             extends 'Pod::Elemental::Element::Generic::Text';
6             with 'Pod::Elemental::Autoblank';
7             with 'Pod::Elemental::Autochomp';
8              
9             # BEGIN Autochomp Replacement
10 13     13   88737 use Pod::Elemental::Types qw(ChompedString);
  13         43  
  13         158  
11             has '+content' => (coerce => 1, isa => ChompedString);
12             # END Autochomp Replacement
13              
14             #pod =head1 OVERVIEW
15             #pod
16             #pod A Pod5::Ordinary element represents a plain old paragraph of text found in a
17             #pod Pod document that's gone through the Pod5 translator.
18             #pod
19             #pod =cut
20              
21 13     13   16355 use namespace::autoclean;
  13         39  
  13         117  
22              
23             __PACKAGE__->meta->make_immutable;
24              
25             1;
26              
27             __END__
28              
29             =pod
30              
31             =encoding UTF-8
32              
33             =head1 NAME
34              
35             Pod::Elemental::Element::Pod5::Ordinary - a Pod5 ordinary text paragraph
36              
37             =head1 VERSION
38              
39             version 0.103005
40              
41             =head1 OVERVIEW
42              
43             A Pod5::Ordinary element represents a plain old paragraph of text found in a
44             Pod document that's gone through the Pod5 translator.
45              
46             =head1 AUTHOR
47              
48             Ricardo SIGNES <rjbs@cpan.org>
49              
50             =head1 COPYRIGHT AND LICENSE
51              
52             This software is copyright (c) 2020 by Ricardo SIGNES.
53              
54             This is free software; you can redistribute it and/or modify it under
55             the same terms as the Perl 5 programming language system itself.
56              
57             =cut