Find and remove dead code and unused APIs in OCaml projects
at main 9 lines 306 B view raw
1(* Unit tests for the System module *) 2open Alcotest 3 4(* Test that the module loads correctly *) 5let test_module_loads () = 6 (* Just verify that we can access the module without errors *) 7 check bool "module loads" true true 8 9let suite = ("system", [ test_case "module loads" `Quick test_module_loads ])