File Coverage

blib/lib/Moose/Exception/Role/ParamsHash.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Moose::Exception::Role::ParamsHash;
2             our $VERSION = '2.2203';
3              
4 50     50   36555 use Moose::Role;
  50         142  
  50         575  
5              
6             has 'params' => (
7             is => 'ro',
8             isa => 'HashRef',
9             required => 1,
10             );
11              
12             1;