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   4742 use strict;
  4         7  
  4         138  
2 4     4   18 use warnings;
  4         5  
  4         183  
3             package Search::GIN::Query;
4             our $VERSION = '0.10';
5 4     4   1372 use Moose::Role;
  4         10813  
  4         26  
6 4     4   17908 use namespace::autoclean;
  4         46  
  4         34  
7              
8             requires qw(
9             consistent
10             extract_values
11             );
12              
13             1;