File Coverage

blib/lib/App/RecordStream/Aggregator/InjectInto/Subrefs.pm
Criterion Covered Total %
statement 25 25 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 0 4 0.0
total 33 37 89.1


line stmt bran cond sub pod time code
1             package App::RecordStream::Aggregator::InjectInto::Subrefs;
2              
3 7     7   831 use strict;
  7         16  
  7         194  
4 7     7   50 use warnings;
  7         16  
  7         177  
5              
6 7     7   1863 use App::RecordStream::Aggregator::InjectInto;
  7         18  
  7         190  
7              
8 7     7   55 use base qw(App::RecordStream::Aggregator::InjectInto);
  7         18  
  7         1380  
9              
10             sub new
11             {
12 46     46 0 105 my $class = shift;
13 46         101 my $initial = shift;
14 46         84 my $combine = shift;
15 46         95 my $squish = shift;
16              
17 46         230 my $this =
18             {
19             'initial' => $initial,
20             'combine' => $combine,
21             'squish' => $squish,
22             };
23              
24 46         119 bless $this, $class;
25              
26 46         149 return $this;
27             }
28              
29             sub initial
30             {
31 16     16 0 318 my $this = shift;
32              
33 16         78 return $this->{'initial'}->();
34             }
35              
36             sub combine
37             {
38 58     58 0 140 my $this = shift;
39              
40 58         289 return $this->{'combine'}->(@_);
41             }
42              
43             sub squish
44             {
45 16     16 0 121 my $this = shift;
46              
47 16         91 return $this->{'squish'}->(@_);
48             }
49              
50             1;