Algorithm-SpatialIndex-Storage-Redis
view release on metacpan or search on metacpan
t/40strategy-octtree.t view on Meta::CPAN
use strict;
use warnings;
use Test::More;
use Algorithm::SpatialIndex;
my $tlibpath;
BEGIN {
$tlibpath = -d "t" ? "t/lib" : "lib";
}
use lib $tlibpath;
use Algorithm::SpatialIndex::Test;
my $cfg = test_redis_config();
if (!$cfg) {
plan skip_all => "Need redis config for testing redis backend";
exit(0);
}
else {
plan tests => 90;
}
use Algorithm::SpatialIndex::OTreeTest;
Algorithm::SpatialIndex::OTreeTest->run(
'Redis',
redis => $cfg,
);
( run in 0.472 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )