File Coverage

blib/lib/Pod/Elemental/Element/Pod5/Data.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Pod::Elemental::Element::Pod5::Data;
2             # ABSTRACT: a Pod data paragraph
3             $Pod::Elemental::Element::Pod5::Data::VERSION = '0.103005';
4 11     11   91 use Moose;
  11         26  
  11         89  
5             extends 'Pod::Elemental::Element::Generic::Text';
6              
7             #pod =head1 OVERVIEW
8             #pod
9             #pod Pod5::Data paragraphs represent the content of
10             #pod L<Pod5::Region|Pod::Elemental::Element::Pod5::Region> paragraphs when the
11             #pod region is not a Pod-like region. These regions should generally have a single
12             #pod data element contained in them.
13             #pod
14             #pod =cut
15              
16 11     11   75700 use namespace::autoclean;
  11         28  
  11         97  
17              
18             __PACKAGE__->meta->make_immutable;
19              
20             1;
21              
22             __END__
23              
24             =pod
25              
26             =encoding UTF-8
27              
28             =head1 NAME
29              
30             Pod::Elemental::Element::Pod5::Data - a Pod data paragraph
31              
32             =head1 VERSION
33              
34             version 0.103005
35              
36             =head1 OVERVIEW
37              
38             Pod5::Data paragraphs represent the content of
39             L<Pod5::Region|Pod::Elemental::Element::Pod5::Region> paragraphs when the
40             region is not a Pod-like region. These regions should generally have a single
41             data element contained in them.
42              
43             =head1 AUTHOR
44              
45             Ricardo SIGNES <rjbs@cpan.org>
46              
47             =head1 COPYRIGHT AND LICENSE
48              
49             This software is copyright (c) 2020 by Ricardo SIGNES.
50              
51             This is free software; you can redistribute it and/or modify it under
52             the same terms as the Perl 5 programming language system itself.
53              
54             =cut