File Coverage

blib/lib/Markdent/Event/StartUnorderedList.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


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