File Coverage

blib/lib/HTML/Shakan/Role/Model.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             package HTML::Shakan::Role::Model;
2 2     2   703 use strict;
  2         5  
  2         44  
3 2     2   10 use warnings;
  2         5  
  2         43  
4 2     2   716 use Mouse::Role;
  2         1750  
  2         7  
5              
6             requires 'create', 'update', 'fill';
7              
8             has 'form' => (
9             is => 'rw',
10             isa => 'HTML::Shakan',
11             );
12              
13             1;