File Coverage

blib/lib/Moose/Exception/Role/RoleForCreate.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::RoleForCreate;
2             our $VERSION = '2.2203';
3              
4 1     1   452 use Moose::Role;
  1         2  
  1         7  
5             with 'Moose::Exception::Role::ParamsHash';
6              
7             has 'attribute_class' => (
8             is => 'ro',
9             isa => 'Str',
10             required => 1,
11             );
12              
13             1;