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   39 use strict;
  8         13  
  8         263  
4 8     8   52 use warnings;
  8         19  
  8         430  
5              
6 8     8   31 use Object::Proto::Sugar -types;
  8         10  
  8         41  
7 8     8   8596 use Game::Cribbage::Error;
  8         61  
  8         362  
8              
9             has [qw/player1 player2 player3 player4/] => (
10             is => 'rw',
11             isa => HashRef
12             );
13              
14             1;