File Coverage

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