File Coverage

blib/lib/Devel/IPerl/Display/Role/Bytestream.pm
Criterion Covered Total %
statement 9 16 56.2
branch 0 2 0.0
condition n/a
subroutine 3 5 60.0
pod 0 2 0.0
total 12 25 48.0


line stmt bran cond sub pod time code
1             $Devel::IPerl::Display::Role::Bytestream::VERSION = '0.012';
2             use strict;
3 2     2   1124 use warnings;
  2         4  
  2         49  
4 2     2   10  
  2         4  
  2         39  
5             use Moo::Role;
6 2     2   9  
  2         2  
  2         11  
7             with qw(Devel::IPerl::Display::Role::MIMEType);
8              
9             has bytestream => ( is => 'rw' );
10              
11             my ( $class, @args ) = @_;
12              
13 0     0 0   # if first arg is data that needs to be determined
14             if( @args % 2 == 1 ) {
15             my $data = shift @args;
16 0 0         unshift @args, bytestream => $data;
17 0           }
18 0            
19             return { @args };
20             };
21 0            
22             my ($self) = @_;
23             return {
24             $self->mimetype => $self->bytestream,
25 0     0 0   };
26             }
27 0            
28             1;
29              
30              
31             =pod
32              
33             =encoding UTF-8
34              
35             =head1 NAME
36              
37             Devel::IPerl::Display::Role::Bytestream
38              
39             =head1 VERSION
40              
41             version 0.012
42              
43             =head1 AUTHOR
44              
45             Zakariyya Mughal <zmughal@cpan.org>
46              
47             =head1 COPYRIGHT AND LICENSE
48              
49             This software is copyright (c) 2014 by Zakariyya Mughal.
50              
51             This is free software; you can redistribute it and/or modify it under
52             the same terms as the Perl 5 programming language system itself.
53              
54             =cut