File Coverage

blib/lib/Devel/IPerl/Display/HTML.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod n/a
total 12 14 85.7


line stmt bran cond sub pod time code
1             package Devel::IPerl::Display::HTML;
2             $Devel::IPerl::Display::HTML::VERSION = '0.007';
3 2     2   14 use strict;
  2         4  
  2         57  
4 2     2   11 use warnings;
  2         5  
  2         54  
5              
6 2     2   11 use Moo;
  2         4  
  2         14  
7             with qw(Devel::IPerl::Display::Role::Displayable Devel::IPerl::Display::Role::Bytestream);
8              
9 0     0     sub _build_mimetype { 'text/html' }
10              
11             1;
12              
13             __END__
14              
15             =pod
16              
17             =encoding UTF-8
18              
19             =head1 NAME
20              
21             Devel::IPerl::Display::HTML
22              
23             =head1 VERSION
24              
25             version 0.007
26              
27             =head1 AUTHOR
28              
29             Zakariyya Mughal <zmughal@cpan.org>
30              
31             =head1 COPYRIGHT AND LICENSE
32              
33             This software is copyright (c) 2014 by Zakariyya Mughal.
34              
35             This is free software; you can redistribute it and/or modify it under
36             the same terms as the Perl 5 programming language system itself.
37              
38             =cut