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.016'; | ||||||
4 | our $AUTHORITY = 'cpan:TOBYINK'; | ||||||
5 | |||||||
6 | 4 | 4 | 670 | use Acme::Mitey::Cards::Mite qw( -all ); | |||
4 | 10 | ||||||
4 | 30 | ||||||
7 | 4 | 4 | 29 | use Acme::Mitey::Cards::Types qw( :types ); | |||
4 | 10 | ||||||
4 | 1589 | ||||||
8 | |||||||
9 | extends 'Acme::Mitey::Cards::Set'; | ||||||
10 | |||||||
11 | has owner => ( | ||||||
12 | is => rw, | ||||||
13 | isa => Str | Object, | ||||||
14 | ); | ||||||
15 | |||||||
16 | 1; |