File Coverage

blib/lib/Devel/IPerl/Display/Markdown.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::Markdown;
2             $Devel::IPerl::Display::Markdown::VERSION = '0.008';
3 1     1   5 use strict;
  1         2  
  1         22  
4 1     1   4 use warnings;
  1         2  
  1         19  
5              
6 1     1   4 use Moo;
  1         1  
  1         5  
7             with qw(Devel::IPerl::Display::Role::Displayable Devel::IPerl::Display::Role::Bytestream);
8              
9 0     0     sub _build_mimetype { 'text/markdown' }
10              
11             1;
12              
13             __END__
14              
15             =pod
16              
17             =encoding UTF-8
18              
19             =head1 NAME
20              
21             Devel::IPerl::Display::Markdown
22              
23             =head1 VERSION
24              
25             version 0.008
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