File Coverage

blib/lib/Org/Element/Comment.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1              
2             use 5.010;
3 11     11   1092 use locale;
  11         37  
4 11     11   56 use Moo;
  11         17  
  11         70  
5 11     11   323 extends 'Org::Element';
  11         35  
  11         59  
6             with 'Org::ElementRole';
7             with 'Org::ElementRole::Block';
8              
9             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
10             our $DATE = '2022-06-23'; # DATE
11             our $DIST = 'Org-Parser'; # DIST
12             our $VERSION = '0.558'; # VERSION
13              
14             1;
15             # ABSTRACT: Represent Org comment
16              
17              
18             =pod
19              
20             =encoding UTF-8
21              
22             =head1 NAME
23              
24             Org::Element::Comment - Represent Org comment
25              
26             =head1 VERSION
27              
28             This document describes version 0.558 of Org::Element::Comment (from Perl distribution Org-Parser), released on 2022-06-23.
29              
30             =head1 DESCRIPTION
31              
32             Derived from L<Org::Element>.
33              
34             =head1 ATTRIBUTES
35              
36             =head1 METHODS
37              
38             =head1 HOMEPAGE
39              
40             Please visit the project's homepage at L<https://metacpan.org/release/Org-Parser>.
41              
42             =head1 SOURCE
43              
44             Source repository is at L<https://github.com/perlancar/perl-Org-Parser>.
45              
46             =head1 AUTHOR
47              
48             perlancar <perlancar@cpan.org>
49              
50             =head1 CONTRIBUTING
51              
52              
53             To contribute, you can send patches by email/via RT, or send pull requests on
54             GitHub.
55              
56             Most of the time, you don't need to build the distribution yourself. You can
57             simply modify the code, then test via:
58              
59             % prove -l
60              
61             If you want to build the distribution (e.g. to try to install it locally on your
62             system), you can install L<Dist::Zilla>,
63             L<Dist::Zilla::PluginBundle::Author::PERLANCAR>, and sometimes one or two other
64             Dist::Zilla plugin and/or Pod::Weaver::Plugin. Any additional steps required
65             beyond that are considered a bug and can be reported to me.
66              
67             =head1 COPYRIGHT AND LICENSE
68              
69             This software is copyright (c) 2022, 2021, 2020, 2019, 2017, 2016, 2015, 2014, 2013, 2012, 2011 by perlancar <perlancar@cpan.org>.
70              
71             This is free software; you can redistribute it and/or modify it under
72             the same terms as the Perl 5 programming language system itself.
73              
74             =head1 BUGS
75              
76             Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=Org-Parser>
77              
78             When submitting a bug or request, please include a test-file or a
79             patch to an existing test-file that illustrates the bug or desired
80             feature.
81              
82             =cut