File Coverage

blib/lib/Devel/IPerl/Display/Role/MIMEType.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             $Devel::IPerl::Display::Role::MIMEType::VERSION = '0.012';
2             use strict;
3 2     2   1074 use warnings;
  2         5  
  2         54  
4 2     2   9  
  2         4  
  2         44  
5             use Moo::Role;
6 2     2   8  
  2         3  
  2         11  
7             has mimetype => ( is => 'ro', builder => 1 );
8             requires '_build_mimetype';
9              
10             1;
11              
12              
13             =pod
14              
15             =encoding UTF-8
16              
17             =head1 NAME
18              
19             Devel::IPerl::Display::Role::MIMEType
20              
21             =head1 VERSION
22              
23             version 0.012
24              
25             =head1 AUTHOR
26              
27             Zakariyya Mughal <zmughal@cpan.org>
28              
29             =head1 COPYRIGHT AND LICENSE
30              
31             This software is copyright (c) 2014 by Zakariyya Mughal.
32              
33             This is free software; you can redistribute it and/or modify it under
34             the same terms as the Perl 5 programming language system itself.
35              
36             =cut