File Coverage

blib/arch/Geo/Geos/Algorithm/LineIntersector.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Geo::Geos::Algorithm::LineIntersector;
2              
3 6     6   106602 use Geo::Geos;
  6         14  
  6         172  
4 6     6   486 use Geo::Geos::Coordinate;
  6         13  
  6         175  
5              
6             # no overload to string, as it leads to segfault if there is no coordinate?
7              
8             =x
9             use overload
10             '""' => \&Geo::Geos::Algorithm::LineIntersector::toString,
11             'fallback' => 1;
12             =cut
13              
14              
15             1;