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   16460 use strict;
  4         5  
  4         135  
2 4     4   19 use warnings;
  4         6  
  4         219  
3             package Search::GIN::Keys::Deep;
4              
5             our $VERSION = '0.11';
6              
7 4     4   443 use Moose::Role;
  4         386239  
  4         22  
8 4     4   17734 use namespace::autoclean;
  4         1256  
  4         27  
9              
10             with qw(
11             Search::GIN::Keys
12             Search::GIN::Keys::Join
13             Search::GIN::Keys::Expand
14             );
15              
16             sub process_keys {
17 22     22 0 48 my ( $self, @keys ) = @_;
18              
19 22         71 $self->join_keys( $self->expand_keys(@keys) );
20             }
21              
22             1;