blob: f2fc78e7281a4e64cff66345dc5807262c995253 [file] [log] [blame]
use Test::More;
use strict;
use warnings;
# This is a collection of tests to trigger requirements
# that may otherwise be removed by slimming docker images.
use_ok('CHI');
my $cache = CHI->new(driver => 'Null');
ok($cache);
$cache = CHI->new(driver => 'File');
ok($cache);
$cache = CHI->new(driver => 'FastMmap');
ok($cache);
done_testing;
__END__