File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Hash/elements.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::elements;
2             our $VERSION = '2.2205';
3              
4 3     3   2119 use strict;
  3         9  
  3         109  
5 3     3   18 use warnings;
  3         11  
  3         112  
6              
7 3     3   18 use Moose::Role;
  3         8  
  3         32  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11 10     10   30 sub _maximum_arguments { 0 }
12              
13             sub _return_value {
14 10     10   23 my $self = shift;
15 10         36 my ($slot_access) = @_;
16              
17 10         109 return 'map { $_, ' . $slot_access . '->{$_} } '
18             . 'keys %{ (' . $slot_access . ') }';
19             }
20              
21 3     3   32 no Moose::Role;
  3         7  
  3         18  
22              
23             1;