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

sub add_callback {} # needed to load a plugin into main::
BEGIN { use_ok('CGI::Application::Plugin::RateLimit') };

my $rate_limit = CGI::Application::Plugin::RateLimit->new();
isa_ok($rate_limit, 'CGI::Application::Plugin::RateLimit');