File Coverage

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