opam-version: "2.0"
maintainer: "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]
  [make "build"]
]
install: [
  [make "install"]
]
remove: [
    ["ocamlfind" "remove" "qcheck"]
]
depends: [
  "ocaml" {>= "4.00.0" & < "4.06.0"}
  "ocamlfind" {build}
  "ocamlbuild" {build}
  "base-bytes"
  "base-unix"
  "ounit"
]
dev-repo: "git+https://github.com/c-cube/qcheck.git"
bug-reports: "https://github.com/c-cube/qcheck/issues"
conflicts: [
  "ounit" { < "2.0" }
]
post-messages:
  "New release of QCheck, split back from qtest.

This release breaks the API compared to qcheck.0.4,
do not update before checking the new `QCheck.mli` and `QCheck_runner` module.
This new version includes shrinking of counter-examples and combinators
that also embed printers.
  "
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."""
authors: "Simon Cruanes <simon.cruanes@inria.fr>"
flags: light-uninstall
url {
  src: "https://github.com/c-cube/qcheck/archive/0.5.tar.gz"
  checksum: "md5=9798f3d99409b900cb4fb87520cd03bc"
}
