package alcotest

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alcotest-js-1.5.0.tbz
sha256=54281907e02d78995df246dc2e10ed182828294ad2059347a1e3a13354848f6c
sha512=1aea91de40795ec4f6603d510107e4b663c1a94bd223f162ad231316d8595e9e098cabbe28a46bdcb588942f3d103d8377373d533bcc7413ba3868a577469b45

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: 12 Oct 2021

README

A lightweight and colourful test framework.


Alcotest exposes a 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.

The API documentation can be found [here][docs]. For information on contributing to Alcotest, see CONTRIBUTING.md.

OCaml-CI Build Status docs


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. ocaml-syntax-shims
  2. uutf >= "1.0.1"
  3. stdlib-shims
  4. re >= "1.7.2"
  5. cmdliner >= "1.0.0" & < "2.0.0"
  6. astring
  7. fmt >= "0.8.7"
  8. ocaml >= "4.03.0"
  9. dune >= "2.8"

Dev Dependencies (2)

  1. odoc with-doc
  2. cmdliner with-test & < "1.1.0"

  1. ahrocksdb
  2. albatross >= "1.5.4"
  3. alcobar
  4. alcotest-async < "1.7.0"
  5. alg_structs_qcheck
  6. algaeff
  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. arc
  16. archetype >= "1.4.2"
  17. archi
  18. arp
  19. arrakis < "1.1.0"
  20. art < "0.3.0"
  21. asai
  22. asak >= "0.2"
  23. asli >= "0.2.0"
  24. asn1-combinators >= "0.2.5"
  25. atd >= "2.3.3"
  26. atdgen >= "2.10.0"
  27. atdpy
  28. atdts
  29. azure-cosmos-db-eio
  30. base32
  31. base64 >= "2.1.2" & < "3.2.0" | >= "3.4.0"
  32. bastet
  33. bastet_async
  34. bastet_lwt
  35. bech32
  36. bechamel >= "0.5.0"
  37. bigarray-overlap
  38. bigstringaf
  39. biotk >= "0.4"
  40. bitlib
  41. blake2
  42. bloomf
  43. bls12-381 < "0.4.1" | >= "3.0.0" & < "18.0"
  44. bls12-381-hash
  45. bls12-381-js >= "0.4.2"
  46. bls12-381-js-gen >= "0.4.2"
  47. bls12-381-legacy
  48. bls12-381-signature
  49. bls12-381-unix
  50. blurhash
  51. brisk-reconciler
  52. builder-web
  53. bytebuffer
  54. ca-certs
  55. ca-certs-nss
  56. cactus
  57. caldav
  58. calendar >= "3.0.0"
  59. calendars >= "2.0.0"
  60. callipyge
  61. camlix
  62. camlkit
  63. camlkit-base
  64. capnp-rpc < "1.2.3"
  65. capnp-rpc-unix < "1.2.3"
  66. caqti >= "1.7.0"
  67. caqti-async >= "1.7.0"
  68. caqti-driver-mariadb >= "1.7.0"
  69. caqti-driver-postgresql >= "1.7.0"
  70. caqti-driver-sqlite3 >= "1.7.0"
  71. caqti-dynload = "2.0.1"
  72. caqti-eio
  73. caqti-lwt >= "1.7.0"
  74. caqti-miou
  75. carray
  76. carton < "1.0.0"
  77. carton-git
  78. carton-lwt >= "0.4.3" & < "1.0.0"
  79. catala >= "0.6.0"
  80. cborl
  81. cf-lwt
  82. chacha
  83. chamelon
  84. chamelon-unix
  85. charrua-client
  86. charrua-server
  87. checkseum >= "0.0.3"
  88. cid
  89. clarity-lang
  90. class_group_vdf
  91. cohttp < "6.0.0"
  92. cohttp-curl-async < "6.1.0"
  93. cohttp-eio = "6.0.0~beta2"
  94. colombe >= "0.2.0"
  95. color
  96. commons
  97. conan
  98. conan-cli
  99. conan-database
  100. conan-lwt
  101. conan-unix
  102. conex < "0.10.0"
  103. conex-mirage-crypto
  104. conformist
  105. cookie
  106. cow >= "2.2.0"
  107. crockford
  108. css
  109. css-parser
  110. cstruct
  111. cstruct-sexp
  112. ctypes-zarith
  113. cuid
  114. curly
  115. current
  116. current-albatross-deployer
  117. current_git >= "0.7.1"
  118. current_incr
  119. current_rpc >= "0.7.4"
  120. data-encoding
  121. dates_calc
  122. dbase4
  123. decimal >= "0.3.0"
  124. decompress < "1.5.3"
  125. depyt
  126. digestif >= "0.9.0"
  127. dispatch >= "0.4.1"
  128. dkim
  129. dkim-bin
  130. dkim-mirage
  131. dkml-dune-dsl-show
  132. dkml-install
  133. dkml-install-installer
  134. dkml-install-runner
  135. dmarc
  136. dns >= "4.4.1"
  137. dns-cli
  138. dns-client >= "4.6.3"
  139. dns-forward-lwt-unix
  140. dns-resolver
  141. dns-server
  142. dns-tsig
  143. dnssd
  144. dnssec < "10.2.4"
  145. domain-name
  146. dream
  147. dream-pure
  148. duff
  149. dune-deps >= "1.4.0"
  150. dune-release >= "1.0.0"
  151. duration
  152. echo
  153. eio < "0.12"
  154. eio_linux < "0.12"
  155. eio_windows < "0.12"
  156. emile
  157. encore
  158. eqaf >= "0.5"
  159. equinoxe
  160. equinoxe-cohttp
  161. equinoxe-hlc
  162. ezgzip
  163. ezjsonm
  164. ezjsonm-lwt
  165. ezlua
  166. FPauth
  167. FPauth-core
  168. FPauth-responses
  169. FPauth-strategies
  170. faraday != "0.2.0"
  171. farfadet
  172. fat-filesystem
  173. fehu < "1.0.0~alpha3"
  174. ff
  175. ff-pbt
  176. flex-array
  177. flux
  178. fluxt
  179. forester >= "5.0"
  180. fsevents-lwt
  181. functoria
  182. fungi
  183. geojson
  184. geoml >= "0.1.1"
  185. git
  186. git-cohttp
  187. git-cohttp-unix
  188. git-kv >= "0.2.0"
  189. git-mirage
  190. git-net
  191. git-split
  192. git-unix
  193. gitlab-unix
  194. glicko2
  195. gmap
  196. gobba
  197. gpt
  198. graphql
  199. graphql-async
  200. graphql-cohttp >= "0.13.0"
  201. graphql-lwt
  202. graphql_parser != "0.11.0"
  203. graphql_ppx
  204. h1
  205. h1_parser
  206. h2
  207. hacl
  208. hacl-star >= "0.6.0" & < "0.7.2"
  209. hacl_func
  210. hacl_x25519
  211. handlebars-ml >= "0.2.1"
  212. highlexer
  213. hkdf
  214. hockmd
  215. html_of_jsx
  216. http < "6.0.0"
  217. http-multipart-formdata < "2.0.0"
  218. httpaf >= "0.2.0"
  219. httpun
  220. httpun-ws
  221. hugin < "1.0.0~alpha3"
  222. huml
  223. hvsock
  224. icalendar
  225. idna
  226. imagelib
  227. index
  228. inferno >= "20220603"
  229. influxdb-async
  230. influxdb-lwt
  231. inquire < "0.2.0"
  232. intel_hex >= "0.3"
  233. interval-map
  234. iomux
  235. irmin
  236. irmin-bench
  237. irmin-chunk
  238. irmin-cli
  239. irmin-containers
  240. irmin-fs
  241. irmin-git
  242. irmin-graphql
  243. irmin-pack
  244. irmin-pack-tools
  245. irmin-test < "3.6.1"
  246. irmin-tezos
  247. irmin-unix
  248. irmin-watcher
  249. jekyll-format
  250. jose
  251. json-data-encoding >= "0.9" & < "1.1.1"
  252. json_decoder
  253. jsonfeed
  254. jsonschema-core
  255. jsonschema-validation
  256. jsonxt
  257. junit_alcotest < "2.1.0"
  258. jwto
  259. kaun < "1.0.0~alpha3"
  260. kdf
  261. ke >= "0.2"
  262. kkmarkdown
  263. kmt
  264. lambda-runtime
  265. lambda_streams
  266. lambda_streams_async
  267. lambdapi
  268. layoutz
  269. letters
  270. liquid_ml >= "0.1.3"
  271. lmdb >= "1.0"
  272. logical
  273. logtk >= "1.6"
  274. lp
  275. lp-glpk
  276. lp-glpk-js < "0.5.0"
  277. lp-gurobi < "0.5.0"
  278. lru
  279. lt-code
  280. luv
  281. mbr-format
  282. mdx >= "1.6.0"
  283. mec
  284. mechaml >= "1.2.1"
  285. merlin = "4.17.1-501"
  286. merlin-lib >= "4.17.1-501"
  287. metrics
  288. middleware
  289. mimic
  290. minicaml = "0.3.1" | >= "0.4"
  291. mirage >= "4.0.0"
  292. mirage-block-partition
  293. mirage-block-ramdisk
  294. mirage-channel >= "4.0.1"
  295. mirage-crypto-ec
  296. mirage-flow-unix
  297. mirage-kv >= "2.0.0"
  298. mirage-kv-mem
  299. mirage-kv-unix >= "3.0.0"
  300. mirage-logs
  301. mirage-nat
  302. mirage-net-unix
  303. mirage-runtime < "4.7.0"
  304. mirage-tc
  305. mjson
  306. mlgpx
  307. mmdb < "0.3.0"
  308. mnd
  309. mqtt
  310. mrmime >= "0.2.0"
  311. msgpck >= "1.6"
  312. mssql >= "2.0.3"
  313. multibase
  314. multihash
  315. multihash-digestif
  316. multipart-form-data
  317. multipart_form
  318. multipart_form-eio
  319. multipart_form-lwt
  320. multipart_form-miou
  321. named-pipe
  322. nanoid
  323. nbd >= "4.0.3"
  324. nbd-tool
  325. neo4j_bolt
  326. nloge
  327. nocoiner
  328. non_empty_list
  329. nx < "1.0.0~alpha3"
  330. nx-datasets
  331. nx-text
  332. OCADml >= "0.6.0"
  333. obatcher
  334. ocaml-ai-sdk
  335. ocaml-index < "5.4.1-503"
  336. ocaml-r >= "0.4.0"
  337. ocaml-version >= "3.5.0"
  338. ocamlformat >= "0.13.0" & < "0.25.1"
  339. ocamlformat-lib
  340. ocamlformat-mlx-lib
  341. ocamlformat-rpc < "removed"
  342. ocamline
  343. ocluster < "0.3.0"
  344. ocue
  345. odoc < "2.1.1"
  346. oenv >= "0.1.0"
  347. ohex
  348. oidc
  349. opam-0install
  350. opam-0install-cudf >= "0.5.0"
  351. opam-compiler
  352. opam-file-format >= "2.1.1"
  353. opam-repomin
  354. opencage
  355. opentelemetry >= "0.6"
  356. opentelemetry-client
  357. opentelemetry-client-cohttp-eio
  358. opentelemetry-client-cohttp-lwt >= "0.6"
  359. opentelemetry-client-ocurl >= "0.6"
  360. opentelemetry-client-ocurl-lwt
  361. opentelemetry-cohttp-lwt >= "0.6"
  362. opentelemetry-logs
  363. opentelemetry-lwt >= "0.6"
  364. opium
  365. opium-graphql
  366. opium-testing
  367. opium_kernel
  368. orewa
  369. orgeat
  370. ortac-core
  371. ortac-wrapper
  372. osnap < "0.3.0"
  373. osx-acl
  374. osx-attr
  375. osx-cf
  376. osx-fsevents
  377. osx-membership
  378. osx-mount
  379. osx-xattr
  380. otoggl
  381. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  382. owl-base < "0.5.0"
  383. owl-ode >= "0.1.0" & != "0.2.0"
  384. owl-symbolic
  385. parseff
  386. passe
  387. passmaker
  388. patch < "3.0.0~alpha2"
  389. pbkdf
  390. pecu >= "0.2"
  391. pf-qubes
  392. pg_query >= "0.9.6"
  393. pgx >= "1.0"
  394. pgx_unix >= "1.0"
  395. pgx_value_core
  396. pgx_value_ptime
  397. phylogenetics
  398. piaf
  399. plebeia >= "2.0.0"
  400. polyglot
  401. polynomial
  402. ppx_blob >= "0.3.0"
  403. ppx_deriving_cmdliner
  404. ppx_deriving_ezjsonm
  405. ppx_deriving_qcheck
  406. ppx_deriving_rpc
  407. ppx_deriving_yaml
  408. ppx_ezlua
  409. ppx_inline_alcotest
  410. ppx_marshal
  411. ppx_parser
  412. ppx_protocol_conv >= "5.0.0"
  413. ppx_protocol_conv_json >= "5.0.0"
  414. ppx_protocol_conv_jsonm >= "5.0.0"
  415. ppx_protocol_conv_msgpack >= "5.0.0"
  416. ppx_protocol_conv_xml_light >= "5.0.0"
  417. ppx_protocol_conv_xmlm
  418. ppx_protocol_conv_yaml >= "5.0.0"
  419. ppx_repr
  420. ppx_subliner
  421. ppx_units
  422. ppx_yojson >= "1.1.0"
  423. pratter
  424. prbnmcn-ucb1 >= "0.0.2"
  425. prc
  426. preface
  427. pretty_expressive
  428. prettym
  429. proc-smaps
  430. producer < "0.2.0"
  431. progress
  432. prom
  433. prometheus < "1.2"
  434. prometheus-app
  435. protocell
  436. protocol-9p < "0.11.0" | >= "0.11.2"
  437. protocol-9p-unix
  438. proton
  439. psq
  440. public-suffix
  441. pyast
  442. qcaml
  443. qcheck >= "0.25"
  444. qcheck-alcotest
  445. qcheck-core >= "0.25"
  446. qcow-stream >= "0.13.0"
  447. qcow-tool >= "0.13.0"
  448. qcow-types >= "0.13.0"
  449. query-json
  450. quickjs
  451. quill < "1.0.0~alpha3"
  452. randii
  453. reason-standard
  454. red-black-tree
  455. reparse >= "2.0.0" & < "3.0.0"
  456. reparse-unix < "2.1.0"
  457. resp
  458. resp-unix >= "0.10.0"
  459. resto >= "0.8"
  460. rfc1951 < "1.0.0"
  461. routes < "2.0.0"
  462. rpc
  463. rpclib
  464. rpclib-async
  465. rpclib-lwt
  466. rpmfile < "0.3.0"
  467. rpmfile-eio
  468. rpmfile-unix
  469. rune < "1.0.0~alpha3"
  470. SZXX >= "4.0.0"
  471. saga
  472. salsa20
  473. salsa20-core
  474. sanddb >= "0.2"
  475. scrypt-kdf
  476. secp256k1 >= "0.4.1"
  477. secp256k1-internal
  478. semver >= "0.2.1"
  479. sendmail
  480. sendmail-lwt
  481. sendmail-miou-unix
  482. sendmail-mirage
  483. sendmsg
  484. seqes
  485. server-reason-react
  486. session-cookie
  487. session-cookie-async
  488. session-cookie-lwt
  489. shakuhachi
  490. sherlodoc
  491. sihl < "0.2.0"
  492. sihl-type
  493. slug
  494. sm
  495. smaws-clients
  496. smaws-lib
  497. smol
  498. smol-helpers
  499. sodium-fmt
  500. solidity-alcotest
  501. sowilo < "1.0.0~alpha3"
  502. spdx_licenses
  503. spectrum >= "0.2.0"
  504. spectrum_capabilities
  505. spectrum_palette_ppx
  506. spectrum_palettes
  507. spectrum_tools
  508. spin >= "0.7.0"
  509. spurs < "0.1.1"
  510. squirrel
  511. ssh-agent
  512. ssl >= "0.6.0"
  513. stramon-lib
  514. stringx
  515. styled-ppx
  516. swapfs
  517. symex >= "0.2"
  518. synchronizer >= "0.2"
  519. syslog-rfc5424 < "0.2"
  520. talon < "1.0.0~alpha3"
  521. tcpip
  522. tdigest < "2.1.0"
  523. term-indexing
  524. term-tools
  525. terminal
  526. terminal_size >= "0.1.1"
  527. terminus
  528. terminus-cohttp
  529. terminus-hlc
  530. terml
  531. testo
  532. testo-lwt
  533. textmate-language >= "0.3.0"
  534. textrazor
  535. timedesc
  536. timere
  537. timmy
  538. timmy-jsoo
  539. timmy-lwt
  540. timmy-unix
  541. tls >= "0.12.8"
  542. toc
  543. topojson
  544. topojsone
  545. traits
  546. transept
  547. tsort >= "2.2.0"
  548. twostep
  549. type_eq
  550. type_id
  551. typeid >= "1.0.1"
  552. tyre >= "0.4"
  553. tyxml >= "4.2.0"
  554. tyxml-jsx
  555. tyxml-ppx >= "4.3.0"
  556. tyxml-syntax
  557. uecc
  558. ulid
  559. universal-portal
  560. unix-dirent
  561. unix-errno
  562. unix-sys-resource
  563. unix-sys-stat
  564. unix-time
  565. unstrctrd
  566. uring < "0.4"
  567. user-agent-parser
  568. uspf
  569. uspf-lwt
  570. uspf-mirage
  571. uspf-unix
  572. utcp
  573. utop >= "2.13.0"
  574. validate
  575. validator
  576. vercel
  577. vhd-format-lwt >= "0.13.0"
  578. wayland >= "2.0"
  579. wcwidth
  580. websocketaf
  581. x509 >= "0.7.0"
  582. xapi-rrd
  583. xapi-stdext-date
  584. xapi-stdext-encodings
  585. xapi-stdext-std >= "4.16.0"
  586. yaml
  587. yaml-sexp
  588. yocaml
  589. yocaml_syndication >= "2.0.0"
  590. yocaml_yaml < "2.0.0"
  591. yojson >= "1.6.0"
  592. yojson-five
  593. yuscii >= "0.3.0"
  594. yuujinchou >= "1.0.0"
  595. zar
  596. zed >= "3.2.2"
  597. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"