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.2203';
3              
4 3     3   1742 use strict;
  3         8  
  3         93  
5 3     3   20 use warnings;
  3         6  
  3         75  
6              
7 3     3   21 use Moose::Role;
  3         7  
  3         21  
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   24 my $self = shift;
15 10         29 my ($slot_access) = @_;
16              
17 10         92 return 'map { $_, ' . $slot_access . '->{$_} } '
18             . 'keys %{ (' . $slot_access . ') }';
19             }
20              
21 3     3   34 no Moose::Role;
  3         7  
  3         16  
22              
23             1;