We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d68c267 commit 5f51bccCopy full SHA for 5f51bcc
src/sys/stm_tests.ml
@@ -20,6 +20,9 @@ struct
20
let pp_path = pp_list pp_string in
21
match x with
22
| File_exists x -> cst1 pp_path "File_exists" par fmt x
23
+ | Is_directory x -> cst1 pp_path "Is_directory" par fmt x
24
+ | Remove (x, y) -> cst2 pp_path pp_string "Remove" par fmt x y
25
+ | Rename (x, y) -> cst2 pp_path pp_path "Rename" par fmt x y
26
| Mkdir (x, y) -> cst2 pp_path pp_string "Mkdir" par fmt x y
27
| Rmdir (x, y) -> cst2 pp_path pp_string "Rmdir" par fmt x y
28
| Readdir x -> cst1 pp_path "Readdir" par fmt x
0 commit comments