File Coverage

blib/lib/Games/Nintendo/Mario/SMBTLL.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 5 6 83.3
pod 1 1 100.0
total 19 21 90.4


line stmt bran cond sub pod time code
1 1     1   502 use 5.16.0;
  1         4  
  1         38  
2 1     1   5 use warnings;
  1         1  
  1         43  
3             package Games::Nintendo::Mario::SMBTLL 0.208;
4              
5 1     1   796 use parent qw(Games::Nintendo::Mario::SMB);
  1         361  
  1         4  
6              
7 5     5   13 sub _items { qw[mushroom flower poison_mushroom] }
8              
9             sub _goto_hash {
10 6     6   24 my ($self) = @_;
11              
12 6         22 my $goto_hash = $self->SUPER::_goto_hash;
13              
14             return {
15 6         36 %$goto_hash,
16             poison_mushroom => $goto_hash->{damage}
17             }
18             }
19              
20             sub games {
21             return (
22 0     0 1   'Super Mario Bros.: The Lost Levels',
23             # 'Super Mario Bros. 2: For Super Players',
24             );
25             }
26              
27             "It's-a me! Mario!";
28              
29             __END__