| Akron | 196f991 | 2024-06-19 09:58:13 +0200 | [diff] [blame^] | 1 | use Test::More; |
| 2 | use strict; | ||||
| 3 | use warnings; | ||||
| 4 | |||||
| 5 | # This is a collection of tests to trigger requirements | ||||
| 6 | # that may otherwise be removed by slimming docker images. | ||||
| 7 | |||||
| 8 | use_ok('CHI'); | ||||
| 9 | |||||
| 10 | my $cache = CHI->new(driver => 'Null'); | ||||
| 11 | |||||
| 12 | ok($cache); | ||||
| 13 | |||||
| 14 | done_testing; | ||||
| 15 | __END__ | ||||