File Coverage

blib/lib/Pod/Elemental/Element/Generic/Nonpod.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::Generic::Nonpod 0.103006;
2             # ABSTRACT: a non-pod element in a Pod document
3              
4 12     12   75 use Moose;
  12         25  
  12         72  
5             with 'Pod::Elemental::Flat';
6              
7 12     12   67038 use namespace::autoclean;
  12         26  
  12         82  
8              
9             #pod =head1 OVERVIEW
10             #pod
11             #pod Generic::Nonpod elements are just like Generic::Text elements, but represent
12             #pod non-pod content found in the Pod stream.
13             #pod
14             #pod =cut
15              
16             __PACKAGE__->meta->make_immutable;
17              
18             1;
19              
20             __END__
21              
22             =pod
23              
24             =encoding UTF-8
25              
26             =head1 NAME
27              
28             Pod::Elemental::Element::Generic::Nonpod - a non-pod element in a Pod document
29              
30             =head1 VERSION
31              
32             version 0.103006
33              
34             =head1 OVERVIEW
35              
36             Generic::Nonpod elements are just like Generic::Text elements, but represent
37             non-pod content found in the Pod stream.
38              
39             =head1 PERL VERSION
40              
41             This library should run on perls released even a long time ago. It should work
42             on any version of perl released in the last five years.
43              
44             Although it may work on older versions of perl, no guarantee is made that the
45             minimum required version will not be increased. The version may be increased
46             for any reason, and there is no promise that patches will be accepted to lower
47             the minimum required perl.
48              
49             =head1 AUTHOR
50              
51             Ricardo SIGNES <cpan@semiotic.systems>
52              
53             =head1 COPYRIGHT AND LICENSE
54              
55             This software is copyright (c) 2022 by Ricardo SIGNES.
56              
57             This is free software; you can redistribute it and/or modify it under
58             the same terms as the Perl 5 programming language system itself.
59              
60             =cut