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.03.0"}
17 "jbuilder" {>= "1.0+beta10"}
18 "alcotest" {>= "0.8.0"}
19 "async_unix" {>= "v0.9.0"}
20 "core_kernel" {>= "v0.9.0"}
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.2/alcotest-0.8.2.tbz"
36 checksum: [
37 "sha256=d336cf0bb5ca25d480cea4e50ec3dd8eb4390f26bfa9e7e268496ee10fd9c751"
38 "md5=477a48cae137160f4832bd24514363c0"
39 ]
40}