this repo has no description
1opam-version: "2.0"
2maintainer: "Sylvain Le Gall <sylvaini+ocaml@le-gall.net>"
3authors: [ "Maas-Maarten Zeeman" "Sylvain Le Gall" ]
4homepage: "https://github.com/gildor478/ounit"
5dev-repo: "git+https://github.com/gildor478/ounit.git"
6bug-reports: "https://github.com/gildor478/ounit/issues"
7doc: "https://gildor478.github.io/ounit/"
8depends: [
9 "ocaml" {>= "4.02.3" & < "5.0"}
10 "dune" {>= "1.11.0"}
11 "base-bytes"
12 "base-unix"
13 "stdlib-shims"
14]
15build: [
16 ["dune" "build" "-p" name "-j" jobs]
17 ["dune" "runtest" "-p" name "-j" jobs] {with-test & ocaml:version < "4.11"}
18 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
19]
20synopsis: "OUnit testing framework"
21description: """
22OUnit is a unit test framework for OCaml. It allows one to easily create
23unit-tests for OCaml code. It is loosely based on [HUnit], a unit testing
24framework for Haskell. It is similar to [JUnit], and other XUnit testing
25frameworks.
26"""
27url {
28 src:
29 "https://github.com/gildor478/ounit/releases/download/v2.2.2/ounit-v2.2.2.tbz"
30 checksum: [
31 "sha256=53439ae8958d4016afd596d7afbe0b613163533761253e8c781d7afe3d6b9dc0"
32 "sha512=24c56141c9063c81e9cd193f9b927f01766e344bd8fbddd702fe1a2765e1bf626082d7b0b29704e1c86ce6eb67493d1f70c0a454e39c6e79209820d0e60db9bd"
33 ]
34}