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;
2             # ABSTRACT: a non-pod element in a Pod document
3             $Pod::Elemental::Element::Generic::Nonpod::VERSION = '0.103005';
4 12     12   87 use Moose;
  12         27  
  12         90  
5             with 'Pod::Elemental::Flat';
6              
7 12     12   78530 use namespace::autoclean;
  12         36  
  12         87  
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.103005
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 AUTHOR
40              
41             Ricardo SIGNES <rjbs@cpan.org>
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             This software is copyright (c) 2020 by Ricardo SIGNES.
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut