File Coverage

/tmp/.liveman/Aion-2.2-0/aion.t/lib/Role/Values/Stringify.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 0 1 0.0
total 7 8 87.5


line stmt bran cond sub pod time code
1             package Role::Values::Stringify;
2              
3 1     1   5 use Aion -role;
  1         2  
  1         5  
4              
5             sub valsify {
6 1     1 0 450 my ($self) = @_;
7 1         8 join ", ", map $self->{$_}, sort keys %$self;
8             }
9              
10             1;