File Coverage

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