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.2205'; | ||||||
3 | |||||||
4 | 1 | 1 | 551 | use Moose::Role; | |||
1 | 3 | ||||||
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; |