File Coverage

blib/lib/Markdent/Event/EndTableBody.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Markdent::Event::EndTableBody;
2              
3 4     4   35 use strict;
  4         9  
  4         136  
4 4     4   25 use warnings;
  4         11  
  4         121  
5 4     4   25 use namespace::autoclean;
  4         9  
  4         33  
6              
7             our $VERSION = '0.38';
8              
9 4     4   378 use Markdent::Types;
  4         10  
  4         33  
10              
11 4     4   105368 use Moose;
  4         12  
  4         53  
12 4     4   29644 use MooseX::StrictConstructor;
  4         11  
  4         39  
13              
14             with 'Markdent::Role::Event' => { event_class => __PACKAGE__ };
15              
16             __PACKAGE__->meta()->make_immutable();
17              
18             1;
19              
20             # ABSTRACT: An event for the end of a table body
21              
22             __END__
23              
24             =pod
25              
26             =encoding UTF-8
27              
28             =head1 NAME
29              
30             Markdent::Event::EndTableBody - An event for the end of a table body
31              
32             =head1 VERSION
33              
34             version 0.38
35              
36             =head1 DESCRIPTION
37              
38             This class represents the end of a table body. A table can have more than
39             one body.
40              
41             =head1 ROLES
42              
43             This class does the L<Markdent::Role::Event> role.
44              
45             =head1 BUGS
46              
47             See L<Markdent> for bug reporting details.
48              
49             Bugs may be submitted at L<https://github.com/houseabsolute/Markdent/issues>.
50              
51             I am also usually active on IRC as 'autarch' on C<irc://irc.perl.org>.
52              
53             =head1 SOURCE
54              
55             The source code repository for Markdent can be found at L<https://github.com/houseabsolute/Markdent>.
56              
57             =head1 AUTHOR
58              
59             Dave Rolsky <autarch@urth.org>
60              
61             =head1 COPYRIGHT AND LICENSE
62              
63             This software is copyright (c) 2020 by Dave Rolsky.
64              
65             This is free software; you can redistribute it and/or modify it under
66             the same terms as the Perl 5 programming language system itself.
67              
68             The full text of the license can be found in the
69             F<LICENSE> file included with this distribution.
70              
71             =cut