File Coverage

blib/lib/Markdent/Event/EndTable.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::EndTable;
2              
3 4     4   32 use strict;
  4         11  
  4         143  
4 4     4   23 use warnings;
  4         9  
  4         119  
5 4     4   471 use namespace::autoclean;
  4         17  
  4         33  
6              
7             our $VERSION = '0.40';
8              
9 4     4   400 use Markdent::Types;
  4         8  
  4         31  
10              
11 4     4   103271 use Moose;
  4         10  
  4         30  
12 4     4   28354 use MooseX::StrictConstructor;
  4         9  
  4         30  
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
21              
22             __END__
23              
24             =pod
25              
26             =encoding UTF-8
27              
28             =head1 NAME
29              
30             Markdent::Event::EndTable - An event for the end of a table
31              
32             =head1 VERSION
33              
34             version 0.40
35              
36             =head1 DESCRIPTION
37              
38             This class represents the end of a table.
39              
40             =head1 ATTRIBUTES
41              
42             This class has the following attributes:
43              
44             =head1 ROLES
45              
46             This class does the L<Markdent::Role::Event> role.
47              
48             =head1 BUGS
49              
50             See L<Markdent> for bug reporting details.
51              
52             Bugs may be submitted at L<https://github.com/houseabsolute/Markdent/issues>.
53              
54             I am also usually active on IRC as 'autarch' on C<irc://irc.perl.org>.
55              
56             =head1 SOURCE
57              
58             The source code repository for Markdent can be found at L<https://github.com/houseabsolute/Markdent>.
59              
60             =head1 AUTHOR
61              
62             Dave Rolsky <autarch@urth.org>
63              
64             =head1 COPYRIGHT AND LICENSE
65              
66             This software is copyright (c) 2021 by Dave Rolsky.
67              
68             This is free software; you can redistribute it and/or modify it under
69             the same terms as the Perl 5 programming language system itself.
70              
71             The full text of the license can be found in the
72             F<LICENSE> file included with this distribution.
73              
74             =cut