File Coverage

blib/lib/Search/GIN/Keys/Deep.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1 4     4   27116 use strict;
  4         8  
  4         176  
2 4     4   23 use warnings;
  4         4  
  4         278  
3             package Search::GIN::Keys::Deep;
4             our $VERSION = '0.10';
5 4     4   822 use Moose::Role;
  4         415968  
  4         37  
6 4     4   20076 use namespace::autoclean;
  4         1133  
  4         31  
7              
8             with qw(
9             Search::GIN::Keys
10             Search::GIN::Keys::Join
11             Search::GIN::Keys::Expand
12             );
13              
14             sub process_keys {
15 22     22 0 36 my ( $self, @keys ) = @_;
16              
17 22         61 $self->join_keys( $self->expand_keys(@keys) );
18             }
19              
20             1;