this repo has no description
1opam-version: "2.0"
2maintainer: ["Cryptosense <opensource@cryptosense.com>"]
3authors: ["Cryptosense <opensource@cryptosense.com>"]
4homepage: "https://github.com/cryptosense/ocaml-mock"
5bug-reports: "https://github.com/cryptosense/ocaml-mock/issues"
6license: "BSD-2-Clause"
7dev-repo: "git+https://github.com/cryptosense/ocaml-mock.git"
8doc: "https://cryptosense.github.io/ocaml-mock/doc"
9build-env: OCAMLPARAM = "_,w=-46,keywords=5.2"
10build: [
11 [ "dune" "build" "-p" name "-j" jobs ]
12]
13depends: [
14 "dune"
15 "ocaml" {>= "4.07.0"}
16]
17conflicts: [
18 "ocaml-variants" {= "4.12.0+domains+effects" | = "5.1.1+effect-syntax"}
19 "ocaml-compiler" {= "5.3.0~alpha1"}
20]
21synopsis: "Configurable functions to test impure code"
22description: """
23This package provides "mocks", fake functions that can be configured to return
24values or raise exceptions. It is possible to inspect their arguments after
25their execution. The API is greatly inspired by unittest.mock in Python.
26"""
27url {
28 src:
29 "https://github.com/cryptosense/ocaml-mock/archive/refs/tags/1.0.0.tar.gz"
30 checksum: [
31 "md5=67deb0f8161f966bef6a422349dd88ad"
32 "sha512=3cad4d869563f4f187cc388170186825e0259a3f0a2d0c956ba47cb1f22ce08860677d80c04451d0b448745d76fef7f1c87e11ac1130548cb8506d5bc5715cd8"
33 ]
34}