File Coverage

blib/lib/Pod/Elemental/Element/Pod5/Command.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package Pod::Elemental::Element::Pod5::Command;
2             # ABSTRACT: a Pod5 =command element
3             $Pod::Elemental::Element::Pod5::Command::VERSION = '0.103004';
4 1     1   17205 use Moose;
  0            
  0            
5              
6             extends 'Pod::Elemental::Element::Generic::Command';
7             with 'Pod::Elemental::Autoblank';
8             with 'Pod::Elemental::Autochomp';
9              
10             use Pod::Elemental::Types qw(ChompedString);
11             has '+content' => (
12             coerce => 1,
13             isa => ChompedString,
14             );
15              
16             #pod =head1 OVERVIEW
17             #pod
18             #pod Pod5::Command elements are identical to
19             #pod L<Generic::Command|Pod::Elemental::Element::Generic::Command> elements, except
20             #pod that they incorporate L<Pod::Elemental::Autoblank>. They represent command
21             #pod paragraphs in a Pod5 document.
22             #pod
23             #pod =cut
24              
25             use namespace::autoclean;
26              
27             __PACKAGE__->meta->make_immutable;
28              
29             1;
30              
31             __END__
32              
33             =pod
34              
35             =encoding UTF-8
36              
37             =head1 NAME
38              
39             Pod::Elemental::Element::Pod5::Command - a Pod5 =command element
40              
41             =head1 VERSION
42              
43             version 0.103004
44              
45             =head1 OVERVIEW
46              
47             Pod5::Command elements are identical to
48             L<Generic::Command|Pod::Elemental::Element::Generic::Command> elements, except
49             that they incorporate L<Pod::Elemental::Autoblank>. They represent command
50             paragraphs in a Pod5 document.
51              
52             =head1 AUTHOR
53              
54             Ricardo SIGNES <rjbs@cpan.org>
55              
56             =head1 COPYRIGHT AND LICENSE
57              
58             This software is copyright (c) 2014 by Ricardo SIGNES.
59              
60             This is free software; you can redistribute it and/or modify it under
61             the same terms as the Perl 5 programming language system itself.
62              
63             =cut