Skip to content

Commit

Permalink
Test for null cache to improve slim images
Browse files Browse the repository at this point in the history
Change-Id: Ic3699a11a498520f61c42d79da48215b60d3a376
  • Loading branch information
Akron committed Jun 19, 2024
1 parent 216a482 commit 196f991
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.55 2024-06-12
0.55 2024-06-9
- Removed deprecated doc_link_to helper. (diewald)
- Removed deprecated doc_ext_link_to helper. (diewald)
- Removed deprecated doc_uc helper. (diewald)
Expand All @@ -7,6 +7,7 @@
- Correctly propagate warnings in frontend calls. (diewald)
- Remove corpusQuery from statistics
(as per Kudstvakt #758). (diewald)
- Improve test suite for slim images. (diewald)

0.54 2024-06-10
- Remove deprecated 'matchInfo' API path. (diewald, margaretha)
Expand Down
15 changes: 15 additions & 0 deletions t/slim.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
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);

done_testing;
__END__

0 comments on commit 196f991

Please sign in to comment.