this repo has no description
1opam-version: "2.0"
2maintainer: "thomas@gazagnaire.org"
3authors: "Thomas Gazagnaire"
4homepage: "https://github.com/mirage/alcotest/"
5dev-repo: "git+https://github.com/mirage/alcotest.git"
6bug-reports: "https://github.com/mirage/alcotest/issues/"
7license: "ISC"
8doc: "https://mirage.github.io/alcotest/"
9
10build: [
11 ["jbuilder" "subst" "-p" name] {dev}
12 ["jbuilder" "build" "-p" name "-j" jobs]
13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
14]
15depends: [
16 "ocaml" {>= "4.02.3"}
17 "jbuilder" {>= "1.0+beta10"}
18 "alcotest" {>= "0.8.0"}
19 "lwt"
20 "logs"
21]
22synopsis: "Alcotest is a lightweight and colourful test framework."
23description: """
24Alcotest exposes simple interface to perform unit tests. It exposes
25a simple `TESTABLE` module type, a `check` function to assert test
26predicates and a `run` function to perform a list of `unit -> unit`
27test callbacks.
28
29Alcotest provides a quiet and colorful output where only faulty runs
30are fully displayed at the end of the run (with the full logs ready to
31inspect), with a simple (yet expressive) query language to select the
32tests to run."""
33url {
34 src:
35 "https://github.com/mirage/alcotest/releases/download/0.8.0/alcotest-0.8.0.tbz"
36 checksum: [
37 "sha256=dcbadd1c70956d013feb236dc7ae1e6ed11d30c0f0cde999ff26bc0c94238051"
38 "md5=771277ef1fe21b17920b5b44acf441b3"
39 ]
40}