File Coverage

blib/lib/Hadoop/Streaming/Role/Iterator.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Hadoop::Streaming::Role::Iterator;
2             $Hadoop::Streaming::Role::Iterator::VERSION = '0.143060';
3 1     1   393 use Moo::Role;
  1         2  
  1         6  
4              
5             requires qw(has_next next);
6             #ABSTRACT: Role to require has_next and next
7              
8             1;
9              
10             __END__