File Coverage

blib/lib/Moose/Exception/MustDefineAMethodName.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 6 100.0


line stmt bran cond sub pod time code
1             package Moose::Exception::MustDefineAMethodName;
2             our $VERSION = '2.2206';
3              
4 4     4   2546 use Moose;
  4         11  
  4         35  
5             extends 'Moose::Exception';
6             with 'Moose::Exception::Role::Instance';
7              
8             sub _build_message {
9 6     6   181 "You must define a method name";
10             }
11              
12             __PACKAGE__->meta->make_immutable;
13             1;