The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Test::More;

my @modules = (
  'Algorithm::SpatialIndex',
  map { "Algorithm::SpatialIndex::" . $_ }
  qw(
    Node
    Bucket
    Strategy
    Storage
    Storage::Memory
    Storage::DBI
    Strategy::2D
    Strategy::3D
    Strategy::QuadTree
    Strategy::OctTree
  )
);
plan tests => scalar(@modules);

use_ok($_) for @modules;