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. eio < "0.12"
  155. eio_linux < "0.12"
  156. eio_windows < "0.12"
  157. emile
  158. encore
  159. eqaf >= "0.5"
  160. equinoxe
  161. equinoxe-cohttp
  162. equinoxe-hlc
  163. ezgzip
  164. ezjsonm
  165. ezjsonm-lwt
  166. ezlua
  167. FPauth
  168. FPauth-core
  169. FPauth-responses
  170. FPauth-strategies
  171. faraday != "0.2.0"
  172. farfadet
  173. fat-filesystem
  174. fehu < "1.0.0~alpha3"
  175. ff
  176. ff-pbt
  177. flex-array
  178. flux
  179. fluxt
  180. forester >= "5.0"
  181. fsevents-lwt
  182. functoria
  183. fungi
  184. geojson
  185. geoml >= "0.1.1"
  186. git
  187. git-cohttp
  188. git-cohttp-unix
  189. git-kv >= "0.2.0"
  190. git-mirage
  191. git-net
  192. git-split
  193. git-unix
  194. gitlab-unix
  195. glicko2
  196. gmap
  197. gobba
  198. gpt
  199. graphql
  200. graphql-async
  201. graphql-cohttp >= "0.13.0"
  202. graphql-lwt
  203. graphql_parser != "0.11.0"
  204. graphql_ppx
  205. h1
  206. h1_parser
  207. h2
  208. hacl
  209. hacl-star >= "0.6.0" & < "0.7.2"
  210. hacl_func
  211. hacl_x25519
  212. handlebars-ml >= "0.2.1"
  213. highlexer
  214. hkdf
  215. hockmd
  216. html_of_jsx
  217. http < "6.0.0"
  218. http-multipart-formdata < "2.0.0"
  219. httpaf >= "0.2.0"
  220. httpun
  221. httpun-ws
  222. hugin < "1.0.0~alpha3"
  223. huml
  224. hvsock
  225. icalendar
  226. idna
  227. imagelib
  228. index
  229. inferno >= "20220603"
  230. influxdb-async
  231. influxdb-lwt
  232. inquire < "0.2.0"
  233. intel_hex >= "0.3"
  234. interval-map
  235. iomux
  236. irmin
  237. irmin-bench
  238. irmin-chunk
  239. irmin-cli
  240. irmin-containers
  241. irmin-fs
  242. irmin-git
  243. irmin-graphql
  244. irmin-pack
  245. irmin-pack-tools
  246. irmin-test < "3.6.1"
  247. irmin-tezos
  248. irmin-unix
  249. irmin-watcher
  250. jekyll-format
  251. jose
  252. json-data-encoding >= "0.9" & < "1.1.1"
  253. json_decoder
  254. jsonfeed
  255. jsonschema-core
  256. jsonschema-validation
  257. jsonxt
  258. junit_alcotest < "2.1.0"
  259. jwto
  260. kaun < "1.0.0~alpha3"
  261. kdf
  262. ke >= "0.2"
  263. kkmarkdown
  264. kmt
  265. lambda-runtime
  266. lambda_streams
  267. lambda_streams_async
  268. lambdapi
  269. layoutz
  270. letters
  271. liquid_ml >= "0.1.3"
  272. lmdb >= "1.0"
  273. logical
  274. logtk
  275. lp
  276. lp-glpk
  277. lp-glpk-js < "0.5.0"
  278. lp-gurobi < "0.5.0"
  279. lru
  280. lt-code
  281. luv
  282. mbr-format
  283. mdx
  284. mec
  285. mechaml >= "1.2.1"
  286. merlin = "4.17.1-501"
  287. merlin-lib >= "4.17.1-501"
  288. metrics
  289. mfat
  290. miaou-core
  291. middleware
  292. mimic
  293. minicaml = "0.3.1" | >= "0.4"
  294. mirage >= "4.0.0"
  295. mirage-block-partition
  296. mirage-block-ramdisk
  297. mirage-channel >= "4.0.1"
  298. mirage-crypto-ec
  299. mirage-flow-unix
  300. mirage-kv >= "2.0.0"
  301. mirage-kv-mem
  302. mirage-kv-unix >= "3.0.0"
  303. mirage-logs
  304. mirage-nat
  305. mirage-net-unix
  306. mirage-runtime < "4.7.0"
  307. mirage-tc
  308. mjson
  309. mlgpx
  310. mmdb < "0.3.0"
  311. mnd
  312. mqtt
  313. mrmime >= "0.2.0"
  314. msgpck >= "1.6"
  315. mssql
  316. multibase
  317. multihash
  318. multihash-digestif
  319. multipart-form-data
  320. multipart_form
  321. multipart_form-eio
  322. multipart_form-lwt
  323. multipart_form-miou
  324. named-pipe
  325. nanoid
  326. nbd >= "4.0.3"
  327. nbd-tool
  328. neo4j_bolt
  329. nloge
  330. nocoiner
  331. non_empty_list
  332. nx < "1.0.0~alpha3"
  333. nx-datasets
  334. nx-text
  335. OCADml >= "0.6.0"
  336. obatcher
  337. ocaml-ai-sdk
  338. ocaml-index < "5.4.1-503"
  339. ocaml-r >= "0.4.0"
  340. ocaml-version >= "3.5.0"
  341. ocamlformat < "0.25.1"
  342. ocamlformat-lib
  343. ocamlformat-mlx-lib
  344. ocamlformat-rpc < "removed"
  345. ocamline
  346. ocgtk
  347. ochre
  348. ochre-cli
  349. ocluster < "0.3.0"
  350. ocue
  351. odoc < "2.1.1"
  352. oenv >= "0.1.0"
  353. ohex
  354. oidc
  355. opam-0install
  356. opam-0install-cudf >= "0.5.0"
  357. opam-compiler
  358. opam-file-format >= "2.1.1"
  359. opam-repomin
  360. opencage
  361. opentelemetry >= "0.6"
  362. opentelemetry-client
  363. opentelemetry-client-cohttp-eio
  364. opentelemetry-client-cohttp-lwt >= "0.6"
  365. opentelemetry-client-ocurl >= "0.6"
  366. opentelemetry-client-ocurl-lwt
  367. opentelemetry-cohttp-lwt >= "0.6"
  368. opentelemetry-logs
  369. opentelemetry-lwt >= "0.6"
  370. opium
  371. opium-graphql
  372. opium-testing
  373. opium_kernel
  374. orewa
  375. orgeat
  376. ortac-core
  377. ortac-wrapper
  378. osnap < "0.3.0"
  379. osx-acl
  380. osx-attr
  381. osx-cf
  382. osx-fsevents
  383. osx-membership
  384. osx-mount
  385. osx-xattr
  386. otoggl
  387. owl >= "0.7.0" & != "0.9.0" & != "1.0.0"
  388. owl-base < "0.5.0"
  389. owl-ode >= "0.1.0" & != "0.2.0"
  390. owl-symbolic
  391. parseff
  392. passe
  393. passmaker
  394. patch < "3.0.0~alpha2"
  395. pbkdf
  396. pecu >= "0.2"
  397. pf-qubes
  398. pg_query >= "0.9.6"
  399. pgx
  400. pgx_unix
  401. pgx_value_core
  402. pgx_value_ptime
  403. phylogenetics
  404. piaf
  405. plebeia >= "2.0.0"
  406. polyglot
  407. polynomial
  408. ppx_blob >= "0.3.0"
  409. ppx_deriving_cmdliner
  410. ppx_deriving_ezjsonm
  411. ppx_deriving_qcheck
  412. ppx_deriving_rpc
  413. ppx_deriving_yaml
  414. ppx_ezlua
  415. ppx_inline_alcotest
  416. ppx_marshal
  417. ppx_parser
  418. ppx_protocol_conv
  419. ppx_protocol_conv_json
  420. ppx_protocol_conv_jsonm
  421. ppx_protocol_conv_msgpack
  422. ppx_protocol_conv_xml_light
  423. ppx_protocol_conv_xmlm
  424. ppx_protocol_conv_yaml
  425. ppx_repr
  426. ppx_subliner
  427. ppx_units
  428. ppx_yojson >= "1.1.0"
  429. pratter
  430. prbnmcn-ucb1 >= "0.0.2"
  431. prc
  432. preface
  433. pretty_expressive
  434. prettym
  435. proc-smaps
  436. producer < "0.2.0"
  437. progress
  438. prom
  439. prometheus < "1.2"
  440. prometheus-app
  441. protocell
  442. protocol-9p < "0.11.0" | >= "0.11.2"
  443. protocol-9p-unix
  444. proton
  445. psq
  446. public-suffix
  447. pyast
  448. qcaml
  449. qcheck >= "0.25"
  450. qcheck-alcotest
  451. qcheck-core >= "0.25"
  452. qcow-stream >= "0.13.0"
  453. qcow-tool = "0.13.0"
  454. qcow-types = "0.13.0"
  455. query-json
  456. quickjs
  457. quill < "1.0.0~alpha3"
  458. randii
  459. reason-standard
  460. red-black-tree
  461. reparse >= "2.0.0" & < "3.0.0"
  462. reparse-unix < "2.1.0"
  463. resp
  464. resp-unix >= "0.10.0"
  465. resto >= "0.8"
  466. rfc1951 < "1.0.0"
  467. routes < "2.0.0"
  468. rpc
  469. rpclib
  470. rpclib-async
  471. rpclib-lwt
  472. rpmfile < "0.3.0"
  473. rpmfile-eio
  474. rpmfile-unix
  475. rune < "1.0.0~alpha3"
  476. SZXX >= "4.0.0"
  477. saga
  478. salsa20
  479. salsa20-core
  480. sanddb >= "0.2"
  481. scrypt-kdf
  482. secp256k1 >= "0.4.1"
  483. secp256k1-internal
  484. semver >= "0.2.1"
  485. sendmail
  486. sendmail-lwt
  487. sendmail-miou-unix
  488. sendmail-mirage
  489. sendmsg
  490. seqes
  491. server-reason-react
  492. session-cookie
  493. session-cookie-async
  494. session-cookie-lwt
  495. sha256-cng
  496. shakuhachi
  497. sherlodoc
  498. sihl < "0.2.0"
  499. sihl-type
  500. slug
  501. sm
  502. smaws-clients
  503. smaws-lib
  504. smol
  505. smol-helpers
  506. sodium-fmt
  507. solidity-alcotest
  508. sowilo < "1.0.0~alpha3"
  509. spdx_licenses
  510. spectrum >= "0.2.0"
  511. spectrum_capabilities
  512. spectrum_palette_ppx
  513. spectrum_palettes
  514. spectrum_tools
  515. spin >= "0.7.0"
  516. spurs < "0.1.1"
  517. squirrel
  518. ssh-agent
  519. ssl >= "0.6.0"
  520. stem
  521. stramon-lib
  522. stringx
  523. styled-ppx
  524. swapfs
  525. symex >= "0.2"
  526. synchronizer >= "0.2"
  527. syslog-rfc5424 < "0.2"
  528. talon < "1.0.0~alpha3"
  529. tcpip
  530. tdigest < "2.1.0"
  531. term-indexing
  532. term-tools
  533. terminal
  534. terminal_size >= "0.1.1"
  535. terminus
  536. terminus-cohttp
  537. terminus-hlc
  538. terml
  539. testo
  540. testo-lwt
  541. textmate-language >= "0.3.0"
  542. textrazor
  543. timedesc
  544. timere
  545. timmy
  546. timmy-jsoo
  547. timmy-lwt
  548. timmy-unix
  549. tls >= "0.12.8"
  550. toc
  551. topojson
  552. topojsone
  553. traits
  554. transept
  555. tsort >= "2.2.0"
  556. twostep
  557. type_eq
  558. type_id
  559. typeid >= "1.0.1"
  560. tyre >= "0.4"
  561. tyxml >= "4.2.0"
  562. tyxml-jsx
  563. tyxml-ppx >= "4.3.0"
  564. tyxml-syntax
  565. uecc
  566. ulid
  567. universal-portal
  568. unix-dirent
  569. unix-errno
  570. unix-sys-resource
  571. unix-sys-stat
  572. unix-time
  573. unstrctrd
  574. uring < "0.4"
  575. user-agent-parser
  576. uspf
  577. uspf-lwt
  578. uspf-mirage
  579. uspf-unix
  580. utcp
  581. utop >= "2.13.0"
  582. validate
  583. validator
  584. vercel
  585. vhd-format-lwt >= "0.13.0"
  586. wayland >= "2.0"
  587. wcwidth
  588. websocketaf
  589. wire
  590. x509 >= "0.7.0"
  591. xapi-rrd
  592. xapi-stdext-date
  593. xapi-stdext-encodings
  594. xapi-stdext-std >= "4.16.0"
  595. yaml
  596. yaml-sexp
  597. yocaml
  598. yocaml_syndication >= "2.0.0"
  599. yocaml_yaml < "2.0.0"
  600. yojson >= "1.6.0"
  601. yojson-five
  602. yuscii >= "0.3.0"
  603. yuujinchou >= "1.0.0"
  604. zar
  605. zed >= "3.2.2"
  606. zlist < "0.4.0"

Conflicts (1)

  1. result < "1.5"