File Coverage

blib/lib/Parse/Method/Signatures/Param/Unpacked/Hash.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Parse::Method::Signatures::Param::Unpacked::Hash;
2              
3 3     3   2815 use Moose::Role;
  3         4  
  3         27  
4 3     3   12071 use namespace::clean -except => 'meta';
  3         4  
  3         25  
5              
6             with 'Parse::Method::Signatures::Param::Unpacked';
7              
8             sub _stringify_variable_name {
9 7     7   14 my ($self) = @_;
10 7         215 return '{' . $self->_params->to_string . '}';
11             }
12              
13             1;