File Coverage

blib/lib/Dancer2/Plugin/FormValidator/Role/ProfileHasMessages.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1              
2             use strict;
3 2     2   9339 use warnings;
  2         5  
  2         53  
4 2     2   9  
  2         4  
  2         64  
5             use Moo::Role;
6 2     2   10  
  2         5  
  2         12  
7             with 'Dancer2::Plugin::FormValidator::Role::Profile',
8             'Dancer2::Plugin::FormValidator::Role::HasMessages';
9              
10             1;