The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Cache::Bounded;
use Test::Simple tests => 2500;
use strict;

my $cache = new Cache::Bounded;

for ( 1 .. 2500 ) {
  ok($cache->set($_,$_));
}