File Coverage

blib/lib/Devel/IPerl/Display/Role/Displayable.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Devel::IPerl::Display::Role::Displayable;
2             $Devel::IPerl::Display::Role::Displayable::VERSION = '0.008';
3 2     2   840 use strict;
  2         5  
  2         60  
4 2     2   12 use warnings;
  2         5  
  2         61  
5              
6 2     2   13 use Moo::Role;
  2         5  
  2         12  
7              
8             requires 'iperl_data_representations';
9              
10             1;
11              
12             __END__
13              
14             =pod
15              
16             =encoding UTF-8
17              
18             =head1 NAME
19              
20             Devel::IPerl::Display::Role::Displayable
21              
22             =head1 VERSION
23              
24             version 0.008
25              
26             =head1 METHODS
27              
28             =head2 iperl_data_representations
29              
30             iperl_data_representations()
31              
32             Returns a hash with the MIME types (e.g., C<text/html>) as the keys and a
33             string representation as the values.
34              
35             =head1 AUTHOR
36              
37             Zakariyya Mughal <zmughal@cpan.org>
38              
39             =head1 COPYRIGHT AND LICENSE
40              
41             This software is copyright (c) 2014 by Zakariyya Mughal.
42              
43             This is free software; you can redistribute it and/or modify it under
44             the same terms as the Perl 5 programming language system itself.
45              
46             =cut