File Coverage

blib/lib/Org/Element/TableHLine.pm
Criterion Covered Total %
statement 8 11 72.7
branch 0 2 0.0
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 12 18 66.6


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