The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -T

use Test::More tests => 3;

if (-e 't-data/chimps-home/chimpsdb/database') {
  unlink qw(t-data/chimps-home/database);
}

BEGIN {
  use_ok('Test::Chimps::Server');
}

my $s = Test::Chimps::Server->new(base_dir => 't-data/chimps-home');

ok($s, "the server object is defined");
isa_ok($s, 'Test::Chimps::Server', "and it's of the correct type");

unlink qw(t-data/chimps-home/chimpsdb/database);