File Coverage

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