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

use Test::More tests => 3;

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

my $s = Test::Chimps::Server::Lister->new(list_template => 'bogus',
                                          max_reports_per_subcategory => 10);

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