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