File Coverage

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


line stmt bran cond sub pod time code
1             package Parse::Method::Signatures::Param::Unpacked;
2              
3 3     3   1507 use Moose::Role;
  3         6  
  3         16  
4 3     3   10202 use Parse::Method::Signatures::Types qw/ParamCollection/;
  3         6  
  3         24  
5              
6 3     3   4478 use namespace::clean -except => 'meta';
  3         5  
  3         21  
7              
8             has _params => (
9             is => 'ro',
10             isa => ParamCollection,
11             init_arg => 'params',
12             predicate => 'has_params',
13             coerce => 1,
14             handles => {
15             params => 'params',
16             },
17             );
18              
19             1;