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

Conflicts (1)

  1. result < "1.5"