File Coverage

blib/lib/Search/GIN/Query.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1 4     4   4445 use strict;
  4         5  
  4         135  
2 4     4   14 use warnings;
  4         5  
  4         164  
3             package Search::GIN::Query;
4              
5             our $VERSION = '0.11';
6              
7 4     4   1402 use Moose::Role;
  4         10345  
  4         21  
8 4     4   17274 use namespace::autoclean;
  4         42  
  4         29  
9              
10             requires qw(
11             consistent
12             extract_values
13             );
14              
15             1;