File Coverage

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