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             package Devel::IPerl::Display::Role::MIMEType;
2             $Devel::IPerl::Display::Role::MIMEType::VERSION = '0.007';
3 2     2   993 use strict;
  2         4  
  2         65  
4 2     2   13 use warnings;
  2         4  
  2         76  
5              
6 2     2   13 use Moo::Role;
  2         6  
  2         16  
7              
8             has mimetype => ( is => 'ro', builder => 1 );
9             requires '_build_mimetype';
10              
11             1;
12              
13             __END__
14              
15             =pod
16              
17             =encoding UTF-8
18              
19             =head1 NAME
20              
21             Devel::IPerl::Display::Role::MIMEType
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