File Coverage

blib/lib/Dancer2/Plugin/FormValidator/Role/Profile.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 15 16 93.7


line stmt bran cond sub pod time code
1              
2             use strict;
3 16     16   57402 use warnings;
  16         39  
  16         408  
4 16     16   74  
  16         32  
  16         322  
5             use Moo::Role;
6 16     16   72  
  16         30  
  16         99  
7             requires 'profile';
8              
9             my ($self, $profile, $input) = @_;
10              
11 17     17 0 82 return $profile;
12             }
13 17         50  
14             1;