blob: f2fc78e7281a4e64cff66345dc5807262c995253 [file] [log] [blame]
Akron196f9912024-06-19 09:58:13 +02001use Test::More;
2use strict;
3use warnings;
4
5# This is a collection of tests to trigger requirements
6# that may otherwise be removed by slimming docker images.
7
8use_ok('CHI');
9
10my $cache = CHI->new(driver => 'Null');
11
12ok($cache);
13
Akronf87af5c2026-01-24 12:24:38 +010014$cache = CHI->new(driver => 'File');
15
16ok($cache);
17
18$cache = CHI->new(driver => 'FastMmap');
19
20ok($cache);
21
Akron196f9912024-06-19 09:58:13 +020022done_testing;
23__END__