File Coverage

blib/lib/Games/ABC_Path/Generator/Coord.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 26 26 100.0


line stmt bran cond sub pod time code
1             package Games::ABC_Path::Generator::Coord;
2             $Games::ABC_Path::Generator::Coord::VERSION = '0.6.0';
3 2     2   37 use 5.006;
  2         7  
4              
5 2     2   10 use strict;
  2         4  
  2         38  
6 2     2   10 use warnings;
  2         13  
  2         52  
7              
8 2     2   10 use integer;
  2         4  
  2         11  
9              
10 2     2   66 use parent 'Games::ABC_Path::Solver::Coord';
  2         6  
  2         11  
11              
12 2     2   133 use Games::ABC_Path::Solver::Constants;
  2         4  
  2         401  
13              
14              
15             sub _from_int
16             {
17 76     76   176 my ( $class, $int ) = @_;
18 76         246 return $class->new( { y => ( $int / $LEN ), x => ( $int % $LEN ) } );
19             }
20              
21              
22              
23             1; # End of Games::ABC_Path::Generator::Coord
24              
25             __END__