blib/lib/Data/Pipeline/Action/Identity.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 1 | 3 | 33.3 |
branch | n/a | ||
condition | n/a | ||
subroutine | 1 | 1 | 100.0 |
pod | n/a | ||
total | 2 | 4 | 50.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Data::Pipeline::Action::Identity; | ||||||
2 | |||||||
3 | 1 | 1 | 2136 | use Moose; | |||
0 | |||||||
0 | |||||||
4 | with 'Data::Pipeline::Action'; | ||||||
5 | |||||||
6 | sub map_item { | ||||||
7 | my($self, $item) = @_; | ||||||
8 | |||||||
9 | return $item; | ||||||
10 | } | ||||||
11 | |||||||
12 | 1; | ||||||
13 | |||||||
14 | __END__ | ||||||
15 |