File Coverage

blib/lib/Game/Cribbage/Round/Score.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Game::Cribbage::Round::Score;
2              
3 8     8   43 use strict;
  8         20  
  8         259  
4 8     8   69 use warnings;
  8         37  
  8         394  
5              
6 8     8   30 use Object::Proto::Sugar -types;
  8         9  
  8         55  
7 8     8   9208 use Game::Cribbage::Error;
  8         65  
  8         376  
8              
9             has [qw/player1 player2 player3 player4/] => (
10             is => 'rw',
11             isa => HashRef
12             );
13              
14             1;
15              
16             __END__