File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Hash/values.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Moose::Meta::Method::Accessor::Native::Hash::values;
2             our $VERSION = '2.2203';
3              
4 2     2   1133 use strict;
  2         7  
  2         64  
5 2     2   14 use warnings;
  2         4  
  2         51  
6              
7 2     2   9 use Moose::Role;
  2         4  
  2         13  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11 9     9   25 sub _maximum_arguments { 0 }
12              
13             sub _return_value {
14 9     9   21 my $self = shift;
15 9         20 my ($slot_access) = @_;
16              
17 9         72 return 'values %{ (' . $slot_access . ') }';
18             }
19              
20 2     2   17 no Moose::Role;
  2         3  
  2         12  
21              
22             1;