File Coverage

blib/lib/Games/ABC_Path/Solver/Move/ResultsInAnError.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::ResultsInAnError;
2             $Games::ABC_Path::Solver::Move::ResultsInAnError::VERSION = '0.8.1';
3 8     8   231936 use strict;
  8         15  
  8         297  
4 8     8   37 use warnings;
  8         14  
  8         409  
5              
6 8     8   39 use parent 'Games::ABC_Path::Solver::Move';
  8         67  
  8         43  
7              
8              
9             sub _format
10             {
11             return
12 1     1   4 "Trying %(letter){letter} for %(coords){coords} results in an error.";
13             }
14              
15              
16             1;
17              
18             __END__