File Coverage

blib/lib/Game/Cribbage/Round/Score.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Game::Cribbage::Round::Score;
2              
3 5     5   40 use strict;
  5         10  
  5         258  
4 5     5   31 use warnings;
  5         11  
  5         290  
5              
6 5     5   31 use Rope;
  5         9  
  5         41  
7 5     5   2033 use Rope::Autoload;
  5         12  
  5         35  
8 5     5   2409 use Game::Cribbage::Error;
  5         17  
  5         610  
9              
10             property player1 => (
11             initable => 1,
12             writeable => 1,
13             configurable => 0,
14             enumerable => 1,
15             );
16              
17             property player2 => (
18             initable => 1,
19             writeable => 1,
20             configurable => 0,
21             enumerable => 1,
22             );
23              
24             property player3 => (
25             initable => 1,
26             writeable => 1,
27             configurable => 0,
28             enumerable => 1,
29             );
30              
31             property player4 => (
32             initable => 1,
33             writeable => 1,
34             configurable => 0,
35             enumerable => 1,
36             );
37              
38             1;