File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1             package Moose::Meta::Method::Accessor::Native::Hash::shallow_clone;
2             our $VERSION = '2.2205';
3              
4 2     2   1300 use strict;
  2         5  
  2         69  
5 2     2   17 use warnings;
  2         4  
  2         74  
6              
7 2     2   12 use Params::Util ();
  2         7  
  2         28  
8              
9 2     2   9 use Moose::Role;
  2         5  
  2         18  
10              
11             with 'Moose::Meta::Method::Accessor::Native::Reader';
12              
13 3     3   12 sub _minimum_arguments { 0 }
14              
15 3     3   10 sub _maximum_arguments { 0 }
16              
17             sub _return_value {
18 3     3   8 my $self = shift;
19 3         15 my ($slot_access) = @_;
20              
21 3         43 return '{ %{ (' . $slot_access . ') } }';
22             }
23              
24 2     2   17 no Moose::Role;
  2         6  
  2         11  
25              
26             1;