File Coverage

blib/lib/Game/Cribbage/Error.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::Error;
2              
3 7     7   52 use strict;
  7         14  
  7         336  
4 7     7   51 use warnings;
  7         30  
  7         426  
5              
6 7     7   45 use Rope;
  7         14  
  7         71  
7 7     7   2840 use Rope::Autoload;
  7         14  
  7         92  
8              
9             property [qw/error message over go/] => (
10             value => 1,
11             initable => 1,
12             writeable => 0,
13             configurable => 0,
14             enumerable => 1
15             );
16              
17             1;