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/qtest" 8bug-reports: "https://github.com/vincent-hugot/qtest/issues" 9doc: 10 "https://github.com/vincent-hugot/qtest/blob/master/README.adoc#introduction" 11tags: ["test" "property" "quickcheck"] 12dev-repo: "git+ssh://git@github.com/vincent-hugot/qtest.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: "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/2.8.tar.gz" 33 checksum: [ 34 "sha256=b3577df82d9ac8ff0701247f1cef08479969a0a5f635092b3f2cb14a8c8bc4b9" 35 "md5=3cbb863b25c00277847271a765d028d5" 36 ] 37}