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             {
3             $Hadoop::Streaming::Role::Iterator::VERSION = '0.122420';
4             }
5 1     1   571 use Any::Moose qw(Role);
  1         1  
  1         7  
6              
7             requires qw(has_next next);
8             #ABSTRACT: Role to require has_next and next
9              
10             1;
11              
12              
13             __END__
14             =pod
15              
16             =head1 NAME
17              
18             Hadoop::Streaming::Role::Iterator - Role to require has_next and next
19              
20             =head1 VERSION
21              
22             version 0.122420
23              
24             =head1 AUTHORS
25              
26             =over 4
27              
28             =item *
29              
30             andrew grangaard <spazm@cpan.org>
31              
32             =item *
33              
34             Naoya Ito <naoya@hatena.ne.jp>
35              
36             =back
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             This software is copyright (c) 2012 by Naoya Ito <naoya@hatena.ne.jp>.
41              
42             This is free software; you can redistribute it and/or modify it under
43             the same terms as the Perl 5 programming language system itself.
44              
45             =cut
46