File Coverage

blib/lib/Data/Riak/Fast/Util/ReduceCount.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Data::Riak::Fast::Util::ReduceCount;
2              
3 22     22   127 use Mouse;
  22         181  
  22         150  
4              
5             extends 'Data::Riak::Fast::MapReduce::Phase::Reduce';
6              
7             has '+language' => (
8             default => 'erlang'
9             );
10              
11             has '+function' => (
12             default => 'reduce_count_inputs'
13             );
14              
15             has '+arg' => (
16             default => 'filter_notfound'
17             );
18              
19             has '+module' => (
20             default => 'riak_kv_mapreduce'
21             );
22              
23 22     22   14237 no Mouse;
  22         48  
  22         135  
24              
25             1;
26              
27             __END__