OCaml library and CLI for OCI and Docker image manipulation
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add noop test cases to empty test suites

Alcotest requires at least one test case per suite. Replace empty lists
with a single noop test case to satisfy this constraint.

+1 -1
+1 -1
test/spec/test_layer.ml
··· 1 - let suite = ("layer", []) 1 + let suite = ("layer", [ Alcotest.test_case "noop" `Quick ignore ])