File Coverage

blib/lib/Search/GIN/Extract/Delegate.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 18 19 94.7


line stmt bran cond sub pod time code
1 2     2   970 use strict;
  2         5  
  2         72  
2 2     2   8 use warnings;
  2         3  
  2         100  
3             package Search::GIN::Extract::Delegate;
4              
5             our $VERSION = '0.11';
6              
7 2     2   9 use Moose::Role;
  2         4  
  2         12  
8 2     2   7983 use namespace::autoclean;
  2         4  
  2         12  
9              
10             has extract => (
11             does => "Search::GIN::Extract",
12             is => "ro",
13             required => 1,
14             # handles => "Search::GIN::Extract"
15             );
16              
17 8     8 0 245 sub extract_values { shift->extract->extract_values(@_) }
18              
19             1;