this repo has no description
1opam-version: "2.0" 2maintainer: "simon.cruanes.2007@m4x.org" 3license: "BSD-2-Clause" 4authors: "Simon Cruanes <simon.cruanes.2007@m4x.orgr>" 5tags: ["test" "property" "quickcheck"] 6homepage: "https://github.com/c-cube/qcheck/" 7doc: "http://c-cube.github.io/qcheck/" 8bug-reports: "https://github.com/c-cube/qcheck/issues" 9depends: [ 10 "dune" 11 "ocaml" {>= "4.03.0"} 12 "base-bytes" 13 "base-unix" 14 "qcheck-core" {= version} 15 "alcotest" {>= "0.8.0"} 16 "odoc" {with-doc} 17] 18build:[ 19 ["dune" "build" "-p" name "-j" jobs] 20 ["dune" "runtest" "-p" name] {with-test} 21 ["dune" "build" "@doc" "-p" name] {with-doc} 22] 23dev-repo: "git+https://github.com/c-cube/qcheck.git" 24synopsis: "QuickCheck inspired property-based testing for OCaml" 25description: """ 26This module provides QCheck integration with alcotest.""" 27url { 28 src: "https://github.com/c-cube/qcheck/archive/0.9.tar.gz" 29 checksum: [ 30 "md5=7782c8cfce30a5fb766d933e99129ee7" 31 "sha512=e1007b4a3be338406d855efcf8d13ac4961963a6c77b794ab83973950e21c777cb66ab6020a0a714f96866597bc8bf7a76a84243e5062dab5b41978e78422e0b" 32 ] 33}