File Coverage

blib/lib/Markdent/Event/EndLink.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::EndLink;
2              
3 35     35   288 use strict;
  35         89  
  35         1235  
4 35     35   213 use warnings;
  35         88  
  35         1061  
5 35     35   205 use namespace::autoclean;
  35         80  
  35         328  
6              
7             our $VERSION = '0.40';
8              
9 35     35   3276 use Moose;
  35         81  
  35         258  
10 35     35   244092 use MooseX::StrictConstructor;
  35         100  
  35         301  
11              
12             with(
13             'Markdent::Role::Event' => { event_class => __PACKAGE__ },
14             'Markdent::Role::BalancedEvent',
15             );
16              
17             __PACKAGE__->meta->make_immutable;
18              
19             1;
20              
21             # ABSTRACT: An event for the end of a link
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             Markdent::Event::EndLink - An event for the end of a link
32              
33             =head1 VERSION
34              
35             version 0.40
36              
37             =head1 DESCRIPTION
38              
39             This class represents the end of a link.
40              
41             =head1 ROLES
42              
43             This class does the L<Markdent::Role::Event> and
44             L<Markdent::Role::BalancedEvent> roles.
45              
46             =head1 BUGS
47              
48             See L<Markdent> for bug reporting details.
49              
50             Bugs may be submitted at L<https://github.com/houseabsolute/Markdent/issues>.
51              
52             I am also usually active on IRC as 'autarch' on C<irc://irc.perl.org>.
53              
54             =head1 SOURCE
55              
56             The source code repository for Markdent can be found at L<https://github.com/houseabsolute/Markdent>.
57              
58             =head1 AUTHOR
59              
60             Dave Rolsky <autarch@urth.org>
61              
62             =head1 COPYRIGHT AND LICENSE
63              
64             This software is copyright (c) 2021 by Dave Rolsky.
65              
66             This is free software; you can redistribute it and/or modify it under
67             the same terms as the Perl 5 programming language system itself.
68              
69             The full text of the license can be found in the
70             F<LICENSE> file included with this distribution.
71              
72             =cut