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   763 use strict;
  2         4  
  2         62  
2 2     2   8 use warnings;
  2         3  
  2         79  
3             package Search::GIN::Extract::Delegate;
4             our $VERSION = '0.10';
5 2     2   9 use Moose::Role;
  2         2  
  2         12  
6 2     2   7640 use namespace::autoclean;
  2         4  
  2         12  
7              
8             has extract => (
9             does => "Search::GIN::Extract",
10             is => "ro",
11             required => 1,
12             # handles => "Search::GIN::Extract"
13             );
14              
15 8     8 0 240 sub extract_values { shift->extract->extract_values(@_) }
16              
17             1;