File Coverage

blib/lib/Acme/Mitey/Cards/Hand.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Acme::Mitey::Cards::Hand;
2              
3             our $VERSION = '0.014';
4             our $AUTHORITY = 'cpan:TOBYINK';
5              
6 3     3   523 use Acme::Mitey::Cards::Mite qw( -all );
  3         6  
  3         21  
7 3     3   13 use Acme::Mitey::Cards::Types qw( :types );
  3         6  
  3         977  
8              
9             extends 'Acme::Mitey::Cards::Set';
10              
11             has owner => (
12             is => rw,
13             isa => Str | Object,
14             );
15              
16             1;