(* Unit tests for the Show module *) open Alcotest (* Test that the module loads correctly *) let test_module_loads () = (* Just verify that we can access the module without errors *) check bool "module loads" true true let suite = ("show", [ test_case "module loads" `Quick test_module_loads ])