File tree Expand file tree Collapse file tree 4 files changed +124
-0
lines changed
qcheck-alcotest/qcheck-alcotest.0.10
qcheck-core/qcheck-core.0.10
qcheck-ounit/qcheck-ounit.0.10 Expand file tree Collapse file tree 4 files changed +124
-0
lines changed Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Alcotest backend for qcheck"
3+ 4+ authors: "Simon Cruanes <
[email protected] >"
5+ tags: ["test" "property" "quickcheck"]
6+ homepage: "https://github.com/c-cube/qcheck/"
7+ doc: "http://c-cube.github.io/qcheck/"
8+ bug-reports: "https://github.com/c-cube/qcheck/issues"
9+ depends: [
10+ "dune"
11+ "base-bytes"
12+ "base-unix"
13+ "qcheck-core" {>= "0.9"}
14+ "alcotest"
15+ "odoc" {with-doc}
16+ "ocaml" {>= "4.03.0"}
17+ ]
18+ build: [
19+ ["dune" "build" "-p" name "-j" jobs]
20+ ["dune" "build" "@doc" "-p" name] {with-doc}
21+ ]
22+ run-test: ["dune" "runtest" "-p" name]
23+ dev-repo: "git+https://github.com/c-cube/qcheck.git"
24+ url {
25+ src: "https://github.com/c-cube/qcheck/archive/0.10.tar.gz"
26+ checksum: [
27+ "md5=de3599bfa7ad2a4981c289affeb9bf6e"
28+ "sha512=250d7934012455d29d95b710f5b42bbe3ea42e6ec1b5781dba807781ac9d5a66ca39dc4535667fd9b00bfcc566e11dbdb3f7306dde1d8f0e9f90d1447cdc4d97"
29+ ]
30+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Core qcheck library"
3+ 4+ authors: "Simon Cruanes <
[email protected] >"
5+ tags: ["test" "property" "quickcheck"]
6+ homepage: "https://github.com/c-cube/qcheck/"
7+ doc: "http://c-cube.github.io/qcheck/"
8+ bug-reports: "https://github.com/c-cube/qcheck/issues"
9+ depends: [
10+ "dune"
11+ "base-bytes"
12+ "base-unix"
13+ "odoc" {with-doc}
14+ "ocaml" {>= "4.03.0"}
15+ ]
16+ conflicts: [
17+ "ounit" {< "2.0"}
18+ ]
19+ build: [
20+ ["dune" "build" "-p" name "-j" jobs]
21+ ["dune" "build" "@doc" "-p" name] {with-doc}
22+ ]
23+ run-test: ["dune" "runtest" "-p" name]
24+ dev-repo: "git+https://github.com/c-cube/qcheck.git"
25+ url {
26+ src: "https://github.com/c-cube/qcheck/archive/0.10.tar.gz"
27+ checksum: [
28+ "md5=de3599bfa7ad2a4981c289affeb9bf6e"
29+ "sha512=250d7934012455d29d95b710f5b42bbe3ea42e6ec1b5781dba807781ac9d5a66ca39dc4535667fd9b00bfcc566e11dbdb3f7306dde1d8f0e9f90d1447cdc4d97"
30+ ]
31+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "OUnit backend for qcheck"
3+ 4+ authors: "Simon Cruanes <
[email protected] >"
5+ tags: ["test" "property" "quickcheck"]
6+ homepage: "https://github.com/c-cube/qcheck/"
7+ doc: "http://c-cube.github.io/qcheck/"
8+ bug-reports: "https://github.com/c-cube/qcheck/issues"
9+ depends: [
10+ "dune"
11+ "base-bytes"
12+ "base-unix"
13+ "qcheck-core" {>= "0.9"}
14+ "ounit" {>= "2.0"}
15+ "odoc" {with-doc}
16+ "ocaml" {>= "4.03.0"}
17+ ]
18+ build: [
19+ ["dune" "build" "-p" name "-j" jobs]
20+ ["dune" "build" "@doc" "-p" name] {with-doc}
21+ ]
22+ run-test: ["dune" "runtest" "-p" name]
23+ dev-repo: "git+https://github.com/c-cube/qcheck.git"
24+ url {
25+ src: "https://github.com/c-cube/qcheck/archive/0.10.tar.gz"
26+ checksum: [
27+ "md5=de3599bfa7ad2a4981c289affeb9bf6e"
28+ "sha512=250d7934012455d29d95b710f5b42bbe3ea42e6ec1b5781dba807781ac9d5a66ca39dc4535667fd9b00bfcc566e11dbdb3f7306dde1d8f0e9f90d1447cdc4d97"
29+ ]
30+ }
Original file line number Diff line number Diff line change 1+ opam-version: "2.0"
2+ synopsis: "Compatibility package for qcheck"
3+ 4+ authors: "Simon Cruanes <
[email protected] >"
5+ tags: ["test" "property" "quickcheck"]
6+ homepage: "https://github.com/c-cube/qcheck/"
7+ doc: "http://c-cube.github.io/qcheck/"
8+ bug-reports: "https://github.com/c-cube/qcheck/issues"
9+ depends: [
10+ "dune"
11+ "base-bytes"
12+ "base-unix"
13+ "qcheck-core" {>= "0.9"}
14+ "qcheck-ounit" {>= "0.9"}
15+ "odoc" {with-doc}
16+ "ocaml" {>= "4.03.0"}
17+ ]
18+ conflicts: [
19+ "ounit" {< "2.0"}
20+ ]
21+ build: [
22+ ["dune" "build" "-p" name "-j" jobs]
23+ ["dune" "build" "@doc" "-p" name] {with-doc}
24+ ]
25+ run-test: ["dune" "runtest" "-p" name]
26+ dev-repo: "git+https://github.com/c-cube/qcheck.git"
27+ url {
28+ src: "https://github.com/c-cube/qcheck/archive/0.10.tar.gz"
29+ checksum: [
30+ "md5=de3599bfa7ad2a4981c289affeb9bf6e"
31+ "sha512=250d7934012455d29d95b710f5b42bbe3ea42e6ec1b5781dba807781ac9d5a66ca39dc4535667fd9b00bfcc566e11dbdb3f7306dde1d8f0e9f90d1447cdc4d97"
32+ ]
33+ }
You can’t perform that action at this time.
0 commit comments