catala/compiler/tests.ml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
275 B
OCaml
Raw Normal View History

let () =
let open Alcotest in
run "Optimizations"
[
( "Iota-reduction",
[
test_case "#1" `Quick Shared_ast.Optimizations.test_iota_reduction_1;
test_case "#2" `Quick Shared_ast.Optimizations.test_iota_reduction_2;
] );
]