package alcotest

  1. Overview
  2. Docs
Alcotest is a lightweight and colourful test framework

Install

Dune Dependency

Authors

Maintainers

Sources

alcotest-mirage-1.4.0.tbz
sha256=b1aaccfb2d651c902592c04953e2619169c91f797cf4f04a7dda2cab09b93ec1
sha512=8a13d5d4c8c77f115903e6b8e58160c6e6ec27870440bd38a674e9406f57f1eff299e65f006fd77728015d1a8f0ae30a714fe47e035824950a71ebfdff2cf3c9

Description

Alcotest exposes simple interface to perform unit tests. It exposes a simple TESTABLE module type, a check function to assert test predicates and a run function to perform a list of unit -> unit test callbacks.

Alcotest provides a quiet and colorful output where only faulty runs are fully displayed at the end of the run (with the full logs ready to inspect), with a simple (yet expressive) query language to select the tests to run.

Published: 16 Apr 2021

README

Alcotest is a lightweight and colourful test framework.

Alcotest exposes simple interface to perform unit tests. It exposes a simple TESTABLE module type, a check function to assert test predicates and a run function to perform a list of unit -> unit test callbacks.

Alcotest provides a quiet and colorful output where only faulty runs are fully displayed at the end of the run (with the full logs ready to inspect), with a simple (yet expressive) query language to select the tests to run. See the manpage for details.

For information on contributing to Alcotest, see CONTRIBUTING.md.

Examples

A simple example (taken from examples/simple.ml):

Generated by the following test suite specification:

(* Build with `ocamlbuild -pkg alcotest simple.byte` *)

(* A module with functions to test *)
module To_test = struct
  let lowercase = String.lowercase_ascii
  let capitalize = String.capitalize_ascii
  let str_concat = String.concat ""
  let list_concat = List.append
end

(* The tests *)
let test_lowercase () =
  Alcotest.(check string) "same string" "hello!" (To_test.lowercase "hELLO!")

let test_capitalize () =
  Alcotest.(check string) "same string" "World." (To_test.capitalize "world.")

let test_str_concat () =
  Alcotest.(check string) "same string" "foobar" (To_test.str_concat ["foo"; "bar"])

let test_list_concat () =
  Alcotest.(check (list int)) "same lists" [1; 2; 3] (To_test.list_concat [1] [2; 3])

(* Run it *)
let () =
  let open Alcotest in
  run "Utils" [
      "string-case", [
          test_case "Lower case"     `Quick test_lowercase;
          test_case "Capitalization" `Quick test_capitalize;
        ];
      "string-concat", [ test_case "String mashing" `Quick test_str_concat  ];
      "list-concat",   [ test_case "List mashing"   `Slow  test_list_concat ];
    ]

The result is a self-contained binary which displays the test results. Use dune exec examples/simple.exe -- --help to see the runtime options.

Here's an example of a of failing test suite:

By default, only the first failing test log is printed to the console (and all test logs are captured on disk). Pass --show-errors to print all error messages.

Selecting tests to execute

You can filter which tests to run by supplying a regular expression matching the names of the tests to execute, or by passing a regular expression and a comma-separated list of test numbers (or ranges of test numbers, e.g. 2,4..9):

$ ./simple.native test '.*concat*'
Testing Utils.
[SKIP]     string-case            0   Lower case.
[SKIP]     string-case            1   Capitalization.
[OK]       string-concat          0   String mashing.
[OK]       list-concat            0   List mashing.
The full test results are available in `_build/_tests`.
Test Successful in 0.000s. 2 tests run.

$ ./simple.native test 'string-case' '1..3'
Testing Utils.
[SKIP]     string-case            0   Lower case.
[OK]       string-case            1   Capitalization.
[SKIP]     string-concat          0   String mashing.
[SKIP]     list-concat            0   List mashing.
The full test results are available in `_build/_tests`.
Test Successful in 0.000s. 1 test run.

Note that you cannot filter by test case name (i.e. Lower case or Capitalization), you must filter by test name & number instead.

See the examples folder for more examples.

Quick and Slow tests

In general you should use `Quick tests: tests that are ran on any invocations of the test suite. You should only use `Slow tests for stress tests that are ran only on occasion (typically before a release or after a major change). These slow tests can be suppressed by passing the -q flag on the command line, e.g.:

$ ./test.exe -q # run only the quick tests
$ ./test.exe    # run quick and slow tests

Passing custom options to the tests

In most cases, the base tests are unit -> unit functions. However, it is also possible to pass an extra option to all the test functions by using 'a -> unit, where 'a is the type of the extra parameter.

In order to do this, you need to specify how this extra parameter is read on the command-line, by providing a Cmdliner term for command-line arguments which explains how to parse and serialize values of type 'a (note: do not use positional arguments, only optional arguments are supported).

For instance:

let test_nice i = Alcotest.(check int) "Is it a nice integer?" i 42

let int =
  let doc = "What is your prefered number?" in
  Cmdliner.Arg.(required & opt (some int) None & info ["n"] ~doc ~docv:"NUM")

let () =
  Alcotest.run_with_args "foo" int [
    "all", ["nice", `Quick, test_nice]
  ]

Will generate test.exe such that:

$ test.exe test
test.exe: required option -n is missing

$ test.exe test -n 42
Testing foo.
[OK]                all          0   int.

Lwt

Alcotest provides an Alcotest_lwt module that you could use to wrap Lwt test cases. The basic idea is that instead of providing a test function in the form unit -> unit, you provide one with the type unit -> unit Lwt.t and alcotest-lwt calls Lwt_main.run for you.

However, there are a couple of extra features:

  • If an async exception occurs, it will cancel your test case for you and fail it (rather than exiting the process).

  • You get given a switch, which will be turned off when the test case finishes (or fails). You can use that to free up any resources.

For instance:

let free () = print_endline "freeing all resources"; Lwt.return ()

let test_lwt switch () =
  Lwt_switch.add_hook (Some switch) free;
  Lwt.async (fun () -> failwith "All is broken");
  Lwt_unix.sleep 10.

let () =
  Lwt_main.run @@ Alcotest_lwt.run "foo" [
    "all", [
      Alcotest_lwt.test_case "one" `Quick test_lwt
    ]
  ]

Will generate:

$ test.exe
Testing foo.
[ERROR]             all          0   one.
-- all.000 [one.] Failed --
in _build/_tests/all.000.output:
freeing all resources
[failure] All is broken

Comparison with other testing frameworks

The README is pretty clear about that:

Alcotest is the only testing framework using colors!

More seriously, Alcotest is similar to ounit but it fixes a few of the problems found in that library:

  • Alcotest has a nicer output, it is easier to see what failed and what succeeded and to read the log outputs of the failed tests;

  • Alcotest uses combinators to define pretty-printers and comparators between the things to test.

Other nice tools doing different kind of testing also exist:

  • qcheck qcheck does random generation and property testing (e.g. Quick Check)

  • crowbar and bun are similar to qcheck, but use compiler-directed randomness, e.g. it takes advantage of the AFL support the OCaml compiler.

  • ppx_inline_tests allows to write tests in the same file as your source-code; they will be run only in a special mode of compilation.

Dependencies (9)

  1. uutf >= "1.0.0"
  2. stdlib-shims
  3. re >= "1.7.2"
  4. uuidm
  5. cmdliner >= "1.0.3"
  6. astring
  7. fmt >= "0.8.7"
  8. ocaml >= "4.03.0"
  9. dune >= "2.2"

Dev Dependencies (1)

  1. cmdliner with-test & < "1.1.0"

  1. ahrocksdb
  2. albatross >= "1.5.0"
  3. alcotest-async < "1.0.0" | = "1.4.0"
  4. alcotest-lwt < "1.0.0" | = "1.4.0"
  5. alcotest-mirage = "1.4.0"
  6. alg_structs_qcheck
  7. ambient-context
  8. ambient-context-eio
  9. ambient-context-lwt
  10. angstrom >= "0.7.0"
  11. ansi >= "0.6.0"
  12. anycache >= "0.7.4"
  13. anycache-async
  14. anycache-lwt
  15. archetype >= "1.4.2"
  16. archi
  17. arp != "2.3.1"
  18. arp-mirage < "2.0.0"
  19. arrakis
  20. art
  21. asak >= "0.2"
  22. asli >= "0.2.0"
  23. asn1-combinators >= "0.2.2"
  24. atd >= "2.3.3"
  25. atdgen >= "2.10.0"
  26. atdpy
  27. atdts
  28. base32
  29. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  30. bastet
  31. bastet_async
  32. bastet_lwt
  33. bech32
  34. bechamel >= "0.5.0"
  35. bigarray-overlap
  36. bigstringaf
  37. bitlib
  38. blake2
  39. bloomf
  40. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  41. bls12-381-hash
  42. bls12-381-js >= "0.4.2"
  43. bls12-381-js-gen >= "0.4.2"
  44. bls12-381-legacy
  45. bls12-381-signature
  46. bls12-381-unix
  47. blurhash
  48. builder-web
  49. bulletml
  50. bytebuffer
  51. ca-certs
  52. ca-certs-nss
  53. cactus
  54. caldav
  55. calendar >= "3.0.0"
  56. callipyge
  57. camlix
  58. camlkit
  59. camlkit-base
  60. capnp-rpc < "1.2.3"
  61. capnp-rpc-lwt < "0.3"
  62. capnp-rpc-mirage >= "0.9.0"
  63. capnp-rpc-unix >= "0.9.0" & < "1.2.3"
  64. carray
  65. carton
  66. carton-git
  67. carton-lwt >= "0.4.1"
  68. cborl
  69. ccss >= "1.6"
  70. cf-lwt
  71. chacha
  72. channel
  73. charrua-client
  74. charrua-client-lwt
  75. charrua-client-mirage < "0.11.0"
  76. charrua-server >= "1.4.1"
  77. checked_oint < "0.1.1"
  78. checkseum >= "0.0.3"
  79. cid
  80. clarity-lang
  81. class_group_vdf
  82. cohttp >= "0.17.0"
  83. cohttp-curl-async
  84. cohttp-curl-lwt
  85. cohttp-eio >= "6.0.0~beta2"
  86. colombe >= "0.2.0"
  87. color
  88. conan
  89. conan-cli
  90. conan-database
  91. conan-lwt
  92. conan-unix
  93. conduit = "3.0.0"
  94. conex < "0.10.0"
  95. conex-mirage-crypto
  96. conex-nocrypto
  97. conformist
  98. cookie
  99. cow >= "2.2.0"
  100. css
  101. css-parser
  102. cstruct >= "3.3.0"
  103. cstruct-sexp
  104. ctypes-zarith
  105. cuid
  106. curly
  107. current >= "0.4"
  108. current-albatross-deployer
  109. current_git >= "0.6.4"
  110. current_incr
  111. cwe_checker
  112. data-encoding
  113. datakit >= "0.12.0"
  114. datakit-bridge-github >= "0.12.0"
  115. datakit-ci
  116. datakit-client-git >= "0.12.0"
  117. decompress >= "0.8" & < "1.5.3"
  118. depyt
  119. digestif >= "0.8.1"
  120. dirsp-exchange-kbb2017
  121. dirsp-proscript-mirage
  122. dirsp-ps2ocaml
  123. dispatch >= "0.4.1"
  124. dkim
  125. dkim-bin
  126. dkim-mirage
  127. dkml-install
  128. dkml-install-installer
  129. dkml-install-runner
  130. dkml-package-console
  131. dns >= "4.0.0"
  132. dns-cli
  133. dns-client >= "4.6.0"
  134. dns-forward < "0.9.0"
  135. dns-forward-lwt-unix
  136. dns-resolver
  137. dns-server
  138. dns-tsig
  139. dnssd
  140. dnssec
  141. docfd >= "2.2.0"
  142. dog < "0.2.1"
  143. domain-name
  144. dream
  145. dream-pure
  146. duff
  147. dune-release >= "1.0.0"
  148. duration >= "0.1.1"
  149. eio < "0.12"
  150. eio_linux < "0.12"
  151. eio_windows < "0.12"
  152. emile
  153. encore
  154. eqaf >= "0.5"
  155. equinoxe
  156. equinoxe-cohttp
  157. equinoxe-hlc
  158. eris
  159. eris-lwt
  160. ezgzip
  161. ezjsonm >= "0.4.2" & < "1.3.0"
  162. ezjsonm-lwt
  163. FPauth
  164. FPauth-core
  165. FPauth-responses
  166. FPauth-strategies
  167. faraday != "0.2.0"
  168. farfadet
  169. fat-filesystem >= "0.12.0"
  170. ff
  171. ff-pbt
  172. flex-array
  173. fsevents-lwt
  174. functoria >= "2.2.0"
  175. functoria-runtime >= "2.2.0" & < "3.0.1" | = "3.1.2"
  176. geojson
  177. geoml >= "0.1.1"
  178. git = "1.4.10" | = "1.5.0" | >= "1.5.2" & != "1.10.0"
  179. git-cohttp
  180. git-cohttp-mirage
  181. git-cohttp-unix
  182. git-mirage
  183. git-unix >= "1.10.0" & != "2.1.0"
  184. gitlab-unix
  185. glicko2
  186. gmap >= "0.3.0"
  187. gobba
  188. gpt
  189. graphql
  190. graphql-async
  191. graphql-cohttp >= "0.13.0"
  192. graphql-lwt
  193. graphql_parser != "0.11.0"
  194. graphql_ppx >= "0.7.1"
  195. h1_parser
  196. h2
  197. hacl
  198. hacl-star >= "0.6.0"
  199. hacl_func
  200. hacl_x25519 >= "0.2.0"
  201. highlexer
  202. hkdf
  203. hockmd
  204. html_of_jsx
  205. http
  206. http-multipart-formdata < "2.0.0"
  207. httpaf >= "0.2.0"
  208. httpun
  209. httpun-ws
  210. hvsock
  211. icalendar >= "0.1.4"
  212. imagelib >= "20200929"
  213. index
  214. inferno >= "20220603"
  215. influxdb-async
  216. influxdb-lwt
  217. inquire < "0.2.0"
  218. interval-map
  219. iomux
  220. irmin < "0.8.0" | >= "0.9.6" & != "0.11.1" & < "1.0.0" | >= "2.0.0" & != "2.3.0"
  221. irmin-bench >= "2.7.0"
  222. irmin-chunk < "1.3.0" | >= "2.3.0"
  223. irmin-cli
  224. irmin-containers
  225. irmin-fs < "1.3.0" | >= "2.3.0"
  226. irmin-git < "2.0.0" | >= "2.3.0"
  227. irmin-graphql >= "2.3.0"
  228. irmin-http < "2.0.0"
  229. irmin-mem < "1.3.0" | >= "2.3.0"
  230. irmin-pack >= "2.4.0" & != "2.6.1"
  231. irmin-pack-tools
  232. irmin-test >= "2.2.0" & < "3.0.0"
  233. irmin-tezos
  234. irmin-tezos-utils
  235. irmin-unix >= "1.0.0" & < "1.3.3" | >= "2.4.0" & != "2.6.1"
  236. irmin-watcher != "0.3.0"
  237. jekyll-format
  238. jerboa
  239. jitsu
  240. jose
  241. json-data-encoding >= "0.9"
  242. json_decoder
  243. jsonxt
  244. junit_alcotest
  245. jwto
  246. ke >= "0.2"
  247. kkmarkdown
  248. lambda-runtime
  249. lambda_streams
  250. lambda_streams_async
  251. lambdapi >= "2.0.0"
  252. lambdoc >= "1.0-beta4"
  253. ledgerwallet-tezos >= "0.2.1" & < "0.4.0"
  254. letters
  255. lmdb >= "1.0"
  256. logical
  257. logtk >= "1.6"
  258. lp
  259. lp-glpk
  260. lp-glpk-js
  261. lp-gurobi
  262. lru
  263. lt-code
  264. luv
  265. mbr-format >= "1.0.0"
  266. mdx >= "1.6.0"
  267. mec
  268. mechaml = "1.0.0" | >= "1.2.1"
  269. merge-queues >= "0.2.0"
  270. merge-ropes >= "0.2.0"
  271. metrics
  272. middleware
  273. mimic
  274. minicaml = "0.3.1" | >= "0.4"
  275. mirage >= "4.0.0~beta1"
  276. mirage-block-partition
  277. mirage-block-ramdisk = "0.3"
  278. mirage-channel >= "4.0.0"
  279. mirage-channel-lwt < "3.1.0"
  280. mirage-crypto-ec != "0.9.2"
  281. mirage-flow >= "1.0.2" & < "1.2.0"
  282. mirage-flow-unix != "1.3.0" & < "1.5.0" | = "2.0.0" | >= "3.0.0"
  283. mirage-fs-mem
  284. mirage-fs-unix >= "1.2.0" & < "1.4.1"
  285. mirage-kv >= "2.0.0"
  286. mirage-kv-mem
  287. mirage-kv-unix >= "3.0.0"
  288. mirage-logs >= "0.3.0"
  289. mirage-nat
  290. mirage-net-unix >= "2.3.0"
  291. mirage-runtime >= "4.0.0~beta1" & < "4.5.0"
  292. mirage-tc
  293. mjson
  294. mmdb < "0.3.0"
  295. mnd
  296. monocypher
  297. mrmime >= "0.2.0"
  298. mrt-format
  299. msgpck >= "1.6"
  300. mssql >= "2.0.3"
  301. multibase
  302. multihash
  303. multihash-digestif
  304. multipart-form-data
  305. multipart_form
  306. multipart_form-eio
  307. multipart_form-lwt
  308. named-pipe
  309. nanoid
  310. nbd >= "4.0.3"
  311. nbd-tool
  312. nloge
  313. nocoiner
  314. non_empty_list
  315. OCADml >= "0.6.0"
  316. ocaml-r >= "0.4.0"
  317. ocaml-version >= "3.1.0"
  318. ocamlformat >= "0.13.0" & != "0.19.0~4.13preview" & < "0.25.1"
  319. ocamlformat-lib
  320. ocamlformat-rpc < "removed"
  321. ocamline
  322. ocluster < "0.3.0"
  323. odoc >= "1.4.0" & < "2.1.0"
  324. ohex
  325. oidc
  326. opam-0install
  327. opam-compiler
  328. opam-file-format >= "2.1.1"
  329. opentelemetry >= "0.6"
  330. opentelemetry-client-cohttp-lwt >= "0.6"
  331. opentelemetry-client-ocurl >= "0.6"
  332. opentelemetry-cohttp-lwt >= "0.6"
  333. opentelemetry-lwt >= "0.6"
  334. opium >= "0.15.0"
  335. opium-graphql
  336. opium-testing
  337. opium_kernel
  338. orewa
  339. orgeat
  340. ortac-core
  341. osnap < "0.3.0"
  342. osx-acl
  343. osx-attr
  344. osx-cf
  345. osx-fsevents
  346. osx-membership
  347. osx-mount
  348. osx-xattr
  349. otoggl
  350. owl >= "0.6.0" & != "0.9.0" & != "1.0.0"
  351. owl-base < "0.5.0"
  352. owl-ode >= "0.1.0" & != "0.2.0"
  353. owl-symbolic
  354. passmaker
  355. patch
  356. pbkdf
  357. pecu >= "0.2"
  358. pf-qubes
  359. pg_query >= "0.9.6"
  360. pgx >= "1.0"
  361. pgx_unix >= "1.0"
  362. pgx_value_core
  363. pgx_value_ptime
  364. phylogenetics
  365. piaf
  366. polyglot
  367. polynomial
  368. ppx_blob >= "0.3.0"
  369. ppx_deriving_cmdliner
  370. ppx_deriving_qcheck
  371. ppx_deriving_rpc
  372. ppx_deriving_yaml
  373. ppx_graphql >= "0.2.0"
  374. ppx_inline_alcotest
  375. ppx_parser
  376. ppx_protocol_conv >= "5.0.0"
  377. ppx_protocol_conv_json >= "5.0.0"
  378. ppx_protocol_conv_jsonm >= "5.0.0"
  379. ppx_protocol_conv_msgpack >= "5.0.0"
  380. ppx_protocol_conv_xml_light >= "5.0.0"
  381. ppx_protocol_conv_xmlm
  382. ppx_protocol_conv_yaml >= "5.0.0"
  383. ppx_repr
  384. ppx_subliner
  385. ppx_units
  386. ppx_yojson >= "1.1.0"
  387. pratter
  388. prbnmcn-ucb1 >= "0.0.2"
  389. prc
  390. preface
  391. pretty_expressive
  392. prettym
  393. proc-smaps
  394. producer < "0.2.0"
  395. progress
  396. prom
  397. prometheus < "1.2"
  398. prometheus-app
  399. protocell
  400. protocol-9p >= "0.3" & < "0.11.0" | >= "0.11.2"
  401. protocol-9p-unix
  402. psq
  403. pyast
  404. qcheck >= "0.18"
  405. qcheck-alcotest
  406. qcheck-core >= "0.18"
  407. quickjs
  408. radis
  409. randii
  410. reason-standard
  411. reparse >= "2.0.0" & < "3.0.0"
  412. reparse-unix < "2.1.0"
  413. resp
  414. resp-unix >= "0.10.0"
  415. rfc1951 < "1.0.0"
  416. routes < "2.0.0"
  417. rpc >= "7.1.0"
  418. rpclib >= "7.1.0"
  419. rpclib-async
  420. rpclib-lwt >= "7.1.0"
  421. rpmfile
  422. rubytt
  423. SZXX >= "4.0.0"
  424. salsa20
  425. salsa20-core
  426. sanddb >= "0.2"
  427. scaml >= "1.5.0"
  428. scrypt-kdf
  429. secp256k1 >= "0.4.1"
  430. secp256k1-internal
  431. semver >= "0.2.1"
  432. sendmail
  433. sendmail-lwt
  434. sendmsg
  435. server-reason-react
  436. session-cookie
  437. session-cookie-async
  438. session-cookie-lwt
  439. sherlodoc
  440. sihl < "0.2.0"
  441. sihl-type
  442. slug
  443. smol
  444. smol-helpers
  445. sodium-fmt
  446. solidity-alcotest
  447. spdx_licenses
  448. spectrum
  449. spin >= "0.7.0"
  450. squirrel
  451. ssh-agent
  452. ssl >= "0.6.0"
  453. stramon-lib
  454. styled-ppx
  455. syslog-rfc5424
  456. tcpip >= "2.4.2" & < "3.4.2" | >= "6.2.0" & < "7.0.0"
  457. tdigest < "2.1.0"
  458. term-indexing
  459. terminal
  460. terminal_size >= "0.1.1"
  461. terminus
  462. terminus-cohttp
  463. terminus-hlc
  464. terml
  465. textmate-language >= "0.3.0"
  466. textrazor
  467. tezos-base-test-helpers < "13.0"
  468. tezos-bls12-381-polynomial
  469. tezos-client-base < "12.0"
  470. tezos-crypto >= "8.0" & < "9.0"
  471. tezos-lmdb
  472. tezos-plompiler = "0.1.3"
  473. tezos-plonk = "0.1.3"
  474. tezos-signer-backends >= "8.0" & < "13.0"
  475. tezos-stdlib >= "8.0" & < "12.0"
  476. tezos-test-helpers < "12.0"
  477. tftp
  478. timedesc
  479. timere
  480. timmy
  481. timmy-jsoo
  482. timmy-unix
  483. tls >= "0.12.0"
  484. toc
  485. topojson
  486. topojsone
  487. transept
  488. twostep
  489. type_eq
  490. type_id
  491. typebeat
  492. typeid >= "1.0.1"
  493. tyre >= "0.4"
  494. tyxml >= "4.0.0"
  495. tyxml-jsx
  496. tyxml-ppx >= "4.3.0"
  497. tyxml-syntax
  498. uecc
  499. ulid
  500. universal-portal
  501. unix-dirent
  502. unix-errno >= "0.3.0"
  503. unix-fcntl >= "0.3.0"
  504. unix-sys-resource
  505. unix-sys-stat
  506. unix-time
  507. unstrctrd
  508. uring < "0.4"
  509. user-agent-parser
  510. uspf
  511. uspf-lwt
  512. uspf-unix
  513. utop >= "2.13.0"
  514. validate
  515. validator
  516. vercel
  517. vpnkit
  518. wayland >= "2.0"
  519. wcwidth
  520. websocketaf
  521. x509 >= "0.7.0"
  522. xapi-rrd >= "1.8.2"
  523. xapi-stdext-date
  524. xapi-stdext-encodings
  525. xapi-stdext-std >= "4.16.0"
  526. yaml < "3.2.0"
  527. yaml-sexp
  528. yocaml
  529. yocaml_yaml
  530. yojson >= "1.6.0"
  531. yojson-five
  532. yuscii >= "0.3.0"
  533. yuujinchou = "1.0.0"
  534. zar
  535. zed >= "3.2.2"
  536. zlist < "0.4.0"

Conflicts

None

OCaml

Innovation. Community. Security.