blib/lib/Text/Pipe/List/MinStr.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 15 | 15 | 100.0 |
branch | 1 | 2 | 50.0 |
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | 1 | 1 | 100.0 |
total | 22 | 23 | 95.6 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Text::Pipe::List::MinStr; | ||||||
2 | |||||||
3 | 1 | 1 | 5 | use warnings; | |||
1 | 2 | ||||||
1 | 29 | ||||||
4 | 1 | 1 | 4 | use strict; | |||
1 | 1 | ||||||
1 | 28 | ||||||
5 | 1 | 1 | 4 | use List::Util 'minstr'; | |||
1 | 2 | ||||||
1 | 83 | ||||||
6 | |||||||
7 | |||||||
8 | our $VERSION = '0.10'; | ||||||
9 | |||||||
10 | |||||||
11 | 1 | 1 | 5 | use base 'Text::Pipe::Base'; | |||
1 | 2 | ||||||
1 | 134 | ||||||
12 | |||||||
13 | |||||||
14 | sub filter { | ||||||
15 | 1 | 1 | 1 | 3 | my ($self, $input) = @_; | ||
16 | 1 | 50 | 4 | return $input unless ref $input eq 'ARRAY'; | |||
17 | |||||||
18 | 1 | 7 | minstr @$input; | ||||
19 | } | ||||||
20 | |||||||
21 | |||||||
22 | 1; | ||||||
23 | |||||||
24 | |||||||
25 | __END__ |