blob: b79743ab32c0fb126d958dd10c492280f7d3f2f9 [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
14done_testing;
15__END__