this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/base_quickcheck" 5bug-reports: "https://github.com/janestreet/base_quickcheck/issues" 6dev-repo: "git+https://github.com/janestreet/base_quickcheck.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/base_quickcheck/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.04.2"} 14 "base" {>= "v0.14" & < "v0.15"} 15 "ppx_base" {>= "v0.14" & < "v0.15"} 16 "ppx_fields_conv" {>= "v0.14" & < "v0.15"} 17 "ppx_let" {>= "v0.14" & < "v0.15"} 18 "ppx_sexp_message" {>= "v0.14" & < "v0.15"} 19 "ppx_sexp_value" {>= "v0.14" & < "v0.15"} 20 "splittable_random" {>= "v0.14" & < "v0.15"} 21 "dune" {>= "2.0.0"} 22 "ppxlib" {>= "0.11.0" & < "0.22.0"} 23] 24synopsis: "Randomized testing framework, designed for compatibility with Base" 25description: " 26Base_quickcheck provides randomized testing in the style of Haskell's Quickcheck library, 27with support for built-in types as well as types provided by Base. 28" 29url { 30 src: 31 "https://ocaml.janestreet.com/ocaml-core/v0.14/files/base_quickcheck-v0.14.0.tar.gz" 32 checksum: [ 33 "sha256=399403677a7e1a46ba4d1395e56f5609751dd5e6e91eb9a74468c3ebb0ca6878" 34 "md5=75acb8709847ca5b9f32036984361ec5" 35 ] 36}