opam-version: "2.0"
maintainer: "simon.cruanes@inria.fr"
authors: [ "Simon Cruanes <simon.cruanes@inria.fr>" ]
homepage: "https://github.com/c-cube/qcheck/"
doc: ["http://cedeela.fr/~simon/software/qcheck/QCheck.html"]
tags: [
  "test"
  "property"
  "quickcheck"
]
build: [
  ["ocaml" "setup.ml" "-configure" "--prefix" prefix "--%{ounit:enable}%-ounit"]
  [make "all" "install_file"]
]
install: [
  [make "install"]
]
remove: [
    ["ocamlfind" "remove" "qcheck"]
]
depends: [
  "ocaml" {>= "4.00.0"}
  "ocamlfind"
  "ocamlbuild" {build}
]
depopts: ["ounit" ]
dev-repo: "git+https://github.com/c-cube/qcheck.git"
bug-reports: "https://github.com/c-cube/qcheck/issues"
conflicts: [ "ounit" { < "2.0" } ]
synopsis: "QuickCheck inspired property-based testing for OCaml."
description: """
This module allows to check invariants (properties of some types) over
randomly generated instances of the type. It provides combinators for
generating instances and printing them."""
flags: light-uninstall
url {
  src: "https://github.com/c-cube/qcheck/archive/0.4.0.1.tar.gz"
  checksum: "md5=84d5871efa592dd3834eee28d581c188"
}
