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 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13] 14 15depends: [ 16 "dune" {>= "1.11"} 17 "ocaml" {>= "4.03.0"} 18 "fmt" {>= "0.8.6"} 19 "astring" 20 "cmdliner" {>= "1.0.3"} # required because of (implicit_transitive_deps false) and cmdliner < 1.0.3 uses result 21 "uuidm" 22 "re" {>= "1.7.2"} 23 "stdlib-shims" 24] 25 26synopsis: "Alcotest is a lightweight and colourful test framework" 27 28description: """ 29Alcotest exposes simple interface to perform unit tests. It exposes 30a simple TESTABLE module type, a check function to assert test 31predicates and a run function to perform a list of unit -> unit 32test callbacks. 33 34Alcotest provides a quiet and colorful output where only faulty runs 35are fully displayed at the end of the run (with the full logs ready to 36inspect), with a simple (yet expressive) query language to select the 37tests to run. 38""" 39url { 40 src: 41 "https://github.com/mirage/alcotest/releases/download/1.0.0/alcotest-1.0.0.tbz" 42 checksum: [ 43 "sha256=ddabff1722ddef4a521c89b9572b9d06f2440d89169db806bea848cb218d83a8" 44 "sha512=3c9dffbb5064cf3e9995110628c7fdf466651e9e022addc8eb1c79585863112a195c254994eb8f8384e183c9e2d9c946e28dcd4b1cac7ca48114a478de2362c0" 45 ] 46}