File Coverage

blib/lib/Game/Cribbage/Error.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 Game::Cribbage::Error;
2              
3 12     12   72 use strict;
  12         19  
  12         415  
4 12     12   42 use warnings;
  12         25  
  12         528  
5              
6 12     12   46 use Object::Proto::Sugar;
  12         15  
  12         64  
7              
8             has [qw/error message over go score/] => (
9             is => 'ro',
10             );
11              
12             1;