File Coverage

blib/lib/Markdent/Event/EndDocument.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::EndDocument;
2              
3 34     34   271 use strict;
  34         86  
  34         1284  
4 34     34   217 use warnings;
  34         74  
  34         1188  
5 34     34   209 use namespace::autoclean;
  34         85  
  34         335  
6              
7             our $VERSION = '0.38';
8              
9 34     34   3326 use Moose;
  34         80  
  34         288  
10 34     34   235044 use MooseX::StrictConstructor;
  34         103  
  34         298  
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 end of a document
19              
20             __END__
21              
22             =pod
23              
24             =encoding UTF-8
25              
26             =head1 NAME
27              
28             Markdent::Event::EndDocument - An event for the end of a document
29              
30             =head1 VERSION
31              
32             version 0.38
33              
34             =head1 DESCRIPTION
35              
36             This class represents the end of a document.
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) 2020 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