File Coverage

blib/lib/Games/ABC_Path/Solver/Move/LastRemainingCellForLetter.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Games::ABC_Path::Solver::Move::LastRemainingCellForLetter;
2             $Games::ABC_Path::Solver::Move::LastRemainingCellForLetter::VERSION = '0.8.1';
3 8     8   224716 use strict;
  8         16  
  8         260  
4 8     8   34 use warnings;
  8         14  
  8         494  
5              
6 8     8   89 use parent 'Games::ABC_Path::Solver::Move';
  8         43  
  8         44  
7              
8              
9             sub _format
10             {
11 22     22   56 return "For %(letter){letter} only %(coords){coords} is possible.";
12             }
13              
14              
15             1;
16              
17             __END__