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. ochre
  344. ochre-cli
  345. ocluster < "0.3.0"
  346. ocue
  347. odoc < "2.1.1"
  348. oenv >= "0.1.0"
  349. ohex
  350. oidc
  351. opam-0install
  352. opam-0install-cudf >= "0.5.0"
  353. opam-compiler
  354. opam-file-format >= "2.1.1"
  355. opam-repomin
  356. opencage
  357. opentelemetry >= "0.6"
  358. opentelemetry-client
  359. opentelemetry-client-cohttp-eio
  360. opentelemetry-client-cohttp-lwt >= "0.6"
  361. opentelemetry-client-ocurl >= "0.6"
  362. opentelemetry-client-ocurl-lwt
  363. opentelemetry-cohttp-lwt >= "0.6"
  364. opentelemetry-logs
  365. opentelemetry-lwt >= "0.6"
  366. opium
  367. opium-graphql
  368. opium-testing
  369. opium_kernel
  370. orewa
  371. orgeat
  372. ortac-core
  373. ortac-wrapper
  374. osnap < "0.3.0"
  375. osx-acl
  376. osx-attr
  377. osx-cf
  378. osx-fsevents
  379. osx-membership
  380. osx-mount
  381. osx-xattr
  382. otoggl
  383. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  384. owl-base < "0.5.0"
  385. owl-ode >= "0.1.0" & != "0.2.0"
  386. owl-symbolic
  387. parseff
  388. passe
  389. passmaker
  390. patch < "3.0.0~alpha2"
  391. pbkdf
  392. pecu >= "0.2"
  393. pf-qubes
  394. pg_query >= "0.9.6"
  395. pgx >= "1.0"
  396. pgx_unix >= "1.0"
  397. pgx_value_core
  398. pgx_value_ptime
  399. phylogenetics
  400. piaf
  401. plebeia >= "2.0.0"
  402. polyglot
  403. polynomial
  404. ppx_blob >= "0.3.0"
  405. ppx_deriving_cmdliner
  406. ppx_deriving_ezjsonm
  407. ppx_deriving_qcheck
  408. ppx_deriving_rpc
  409. ppx_deriving_yaml
  410. ppx_ezlua
  411. ppx_inline_alcotest
  412. ppx_marshal
  413. ppx_parser
  414. ppx_protocol_conv >= "5.0.0"
  415. ppx_protocol_conv_json >= "5.0.0"
  416. ppx_protocol_conv_jsonm >= "5.0.0"
  417. ppx_protocol_conv_msgpack >= "5.0.0"
  418. ppx_protocol_conv_xml_light >= "5.0.0"
  419. ppx_protocol_conv_xmlm
  420. ppx_protocol_conv_yaml >= "5.0.0"
  421. ppx_repr
  422. ppx_subliner
  423. ppx_units
  424. ppx_yojson >= "1.1.0"
  425. pratter
  426. prbnmcn-ucb1 >= "0.0.2"
  427. prc
  428. preface
  429. pretty_expressive
  430. prettym
  431. proc-smaps
  432. producer < "0.2.0"
  433. progress
  434. prom
  435. prometheus < "1.2"
  436. prometheus-app
  437. protocell
  438. protocol-9p < "0.11.0" | >= "0.11.2"
  439. protocol-9p-unix
  440. proton
  441. psq
  442. public-suffix
  443. pyast
  444. qcaml
  445. qcheck >= "0.25"
  446. qcheck-alcotest
  447. qcheck-core >= "0.25"
  448. qcow-stream >= "0.13.0"
  449. qcow-tool = "0.13.0"
  450. qcow-types = "0.13.0"
  451. query-json
  452. quickjs
  453. quill < "1.0.0~alpha3"
  454. randii
  455. reason-standard
  456. red-black-tree
  457. reparse >= "2.0.0" & < "3.0.0"
  458. reparse-unix < "2.1.0"
  459. resp
  460. resp-unix >= "0.10.0"
  461. resto >= "0.8"
  462. rfc1951 < "1.0.0"
  463. routes < "2.0.0"
  464. rpc
  465. rpclib
  466. rpclib-async
  467. rpclib-lwt
  468. rpmfile < "0.3.0"
  469. rpmfile-eio
  470. rpmfile-unix
  471. rune < "1.0.0~alpha3"
  472. SZXX >= "4.0.0"
  473. saga
  474. salsa20
  475. salsa20-core
  476. sanddb >= "0.2"
  477. scrypt-kdf
  478. secp256k1 >= "0.4.1"
  479. secp256k1-internal
  480. semver >= "0.2.1"
  481. sendmail
  482. sendmail-lwt
  483. sendmail-miou-unix
  484. sendmail-mirage
  485. sendmsg
  486. seqes
  487. server-reason-react
  488. session-cookie
  489. session-cookie-async
  490. session-cookie-lwt
  491. shakuhachi
  492. sherlodoc
  493. sihl < "0.2.0"
  494. sihl-type
  495. slug
  496. sm
  497. smaws-clients
  498. smaws-lib
  499. smol
  500. smol-helpers
  501. sodium-fmt
  502. solidity-alcotest
  503. sowilo < "1.0.0~alpha3"
  504. spdx_licenses
  505. spectrum >= "0.2.0"
  506. spectrum_capabilities
  507. spectrum_palette_ppx
  508. spectrum_palettes
  509. spectrum_tools
  510. spin >= "0.7.0"
  511. spurs < "0.1.1"
  512. squirrel
  513. ssh-agent
  514. ssl >= "0.6.0"
  515. stramon-lib
  516. stringx
  517. styled-ppx
  518. swapfs
  519. symex >= "0.2"
  520. synchronizer >= "0.2"
  521. syslog-rfc5424 < "0.2"
  522. talon < "1.0.0~alpha3"
  523. tcpip
  524. tdigest < "2.1.0"
  525. term-indexing
  526. term-tools
  527. terminal
  528. terminal_size >= "0.1.1"
  529. terminus
  530. terminus-cohttp
  531. terminus-hlc
  532. terml
  533. testo
  534. testo-lwt
  535. textmate-language >= "0.3.0"
  536. textrazor
  537. timedesc
  538. timere
  539. timmy
  540. timmy-jsoo
  541. timmy-lwt
  542. timmy-unix
  543. tls >= "0.12.8"
  544. toc
  545. topojson
  546. topojsone
  547. traits
  548. transept
  549. tsort >= "2.2.0"
  550. twostep
  551. type_eq
  552. type_id
  553. typeid >= "1.0.1"
  554. tyre >= "0.4"
  555. tyxml >= "4.2.0"
  556. tyxml-jsx
  557. tyxml-ppx >= "4.3.0"
  558. tyxml-syntax
  559. uecc
  560. ulid
  561. universal-portal
  562. unix-dirent
  563. unix-errno
  564. unix-sys-resource
  565. unix-sys-stat
  566. unix-time
  567. unstrctrd
  568. uring < "0.4"
  569. user-agent-parser
  570. uspf
  571. uspf-lwt
  572. uspf-mirage
  573. uspf-unix
  574. utcp
  575. utop >= "2.13.0"
  576. validate
  577. validator
  578. vercel
  579. vhd-format-lwt >= "0.13.0"
  580. wayland >= "2.0"
  581. wcwidth
  582. websocketaf
  583. x509 >= "0.7.0"
  584. xapi-rrd
  585. xapi-stdext-date
  586. xapi-stdext-encodings
  587. xapi-stdext-std >= "4.16.0"
  588. yaml
  589. yaml-sexp
  590. yocaml
  591. yocaml_syndication >= "2.0.0"
  592. yocaml_yaml < "2.0.0"
  593. yojson >= "1.6.0"
  594. yojson-five
  595. yuscii >= "0.3.0"
  596. yuujinchou >= "1.0.0"
  597. zar
  598. zed >= "3.2.2"
  599. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"