this repo has no description
1opam-version: "2.0"
2maintainer: "Vincent Hugot <vincent.hugot@gmail.com>"
3authors: [
4 "Vincent Hugot <vincent.hugot@gmail.com>"
5 "Simon Cruanes <simon.cruanes.2007@m4x.org"
6]
7homepage: "https://github.com/vincent-hugot/iTeML"
8bug-reports: "https://github.com/vincent-hugot/iTeML/issues"
9doc:
10 "https://github.com/vincent-hugot/iTeML/blob/master/README.adoc#introduction"
11tags: ["test" "property" "quickcheck"]
12dev-repo: "git+ssh://git@github.com/vincent-hugot/iTeML.git"
13build: [make "build"]
14install: [make "BIN=%{bin}%" "install"]
15remove: ["rm" "%{bin}%/qtest"]
16depends: [
17 "ocaml" {>= "4.00.0" & < "5.0.0"}
18 "ocamlfind"
19 "base-bytes"
20 "ounit" {>= "2.0.0"}
21 "ocamlbuild" {build}
22 "qcheck" {>= "0.5"}
23]
24synopsis: "iTeML / qtest : Inline (Unit) Tests for OCaml."
25description: """
26qtest extracts inline unit tests written using a special
27syntax in comments. Those tests are then run using the oUnit framework
28and the qcheck library. The possibilities range from trivial tests --
29extremely simple to use -- to sophisticated random generation of test cases."""
30flags: light-uninstall
31url {
32 src: "https://github.com/vincent-hugot/qtest/archive/v2.7.tar.gz"
33 checksum: [
34 "sha256=cf458bf295d4e5a0c8e08ed7b5544ed71736b3682d237f43b2b56abb87014689"
35 "md5=3dd7f95ec92137e0bbd857c52dd8a095"
36 ]
37}