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

Conflicts (1)

  1. result < "1.5"