forked from c-cube/qcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqcheck-alcotest.opam
More file actions
36 lines (35 loc) · 1.03 KB
/
qcheck-alcotest.opam
File metadata and controls
36 lines (35 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
opam-version: "2.0"
maintainer: "simon.cruanes.2007@m4x.org"
author: [ "the qcheck contributors" ]
homepage: "https://github.com/c-cube/qcheck/"
license: "BSD-2-Clause"
synopsis: "Alcotest backend for QCheck"
description: """
QCheck is a QuickCheck inspired property-based testing library for OCaml.
The `qcheck-alcotest` library provides an integration layer for `QCheck` onto
https://github.com/mirage/alcotest[`alcotest`], allowing to run property-based
tests in `alcotest`."""
doc: ["http://c-cube.github.io/qcheck/"]
version: "0.91"
tags: [
"test"
"quickcheck"
"qcheck"
"alcotest"
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"dune" { >= "2.8.0" }
"base-unix"
"qcheck-core" { = version }
"alcotest" {>= "1.2.0"}
"odoc" {with-doc}
"ocaml" {>= "4.08.0"}
]
dev-repo: "git+https://github.com/c-cube/qcheck.git"
bug-reports: "https://github.com/c-cube/qcheck/issues"
x-maintenance-intent: ["(latest)"]