-
Notifications
You must be signed in to change notification settings - Fork 1
/
popper.opam
31 lines (31 loc) · 852 Bytes
/
popper.opam
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
opam-version: "2.0"
version: "0.1.1"
synopsis: "Property-based testing at ease"
description:
"Popper (after Karl) is an OCaml library for writing regular unit tests as well as property-based tests. The design is inspired by the Python library Hypothesis and supports built-in shrinking for counter-examples."
maintainer: ["Joel Bjornson <[email protected]>"]
authors: ["Joel Bjornson <[email protected]>"]
license: "ISC"
homepage: "https://github.com/jobjo/popper"
doc: "https://jobjo.github.io/popper/"
bug-reports: "https://github.com/jobjo/popper/issues"
depends: [
"pringo"
"ocaml" {>= "4.09.1"}
"dune" {>= "2.8"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/jobjo/popper.git"