File Coverage

lib/Pod/Elemental/Transformer/Splint/MethodRenderer.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1 3     3   1689 use 5.14.0;
  3         10  
2 3     3   15 use strict;
  3         4  
  3         88  
3 3     3   14 use warnings;
  3         7  
  3         161  
4              
5             package Pod::Elemental::Transformer::Splint::MethodRenderer;
6              
7             our $VERSION = '0.1003'; # VERSION
8             # ABSTRACT: Role for method renderers
9              
10 3     3   15 use Moose::Role;
  3         7  
  3         25  
11 3     3   15980 use Pod::Simple::XHTML;
  3         7  
  3         179  
12              
13             with 'Pod::Elemental::Transformer::Splint::Util';
14             requires 'render_method';
15              
16              
17             1;
18              
19             __END__
20              
21             =pod
22              
23             =encoding UTF-8
24              
25             =head1 NAME
26              
27             Pod::Elemental::Transformer::Splint::MethodRenderer - Role for method renderers
28              
29             =head1 VERSION
30              
31             Version 0.1003, released 2016-01-11.
32              
33             =head1 SOURCE
34              
35             L<https://github.com/Csson/p5-Pod-Elemental-Transformer-Splint>
36              
37             =head1 HOMEPAGE
38              
39             L<https://metacpan.org/release/Pod-Elemental-Transformer-Splint>
40              
41             =head1 AUTHOR
42              
43             Erik Carlsson <info@code301.com>
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2016 by Erik Carlsson.
48              
49             This is free software; you can redistribute it and/or modify it under
50             the same terms as the Perl 5 programming language system itself.
51              
52             =cut