Skip to content

Commit

Permalink
[new release] bam (3 packages) (0.2)
Browse files Browse the repository at this point in the history
CHANGES:

- francoisthire/bam#2,francoisthire/bam#5: Add a PPX for Bam derving generators from a type or a module type

- francoisthire/bam#1: Fix the `Bam.Std.oneof` generator
  • Loading branch information
saroupille committed May 12, 2024
1 parent 4eb8860 commit d1f5226
Show file tree
Hide file tree
Showing 3 changed files with 127 additions and 0 deletions.
42 changes: 42 additions & 0 deletions packages/bam-ppx/bam-ppx.0.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
opam-version: "2.0"
synopsis: "A PPX deriving generators for OCaml types"
description:
"Provides a way to automatically get generators for a given type"
maintainer: ["François Thiré"]
authors: ["François Thiré"]
license: "MIT"
tags: ["test" "pbt" "shrinking" "internal" "bam" "ppx"]
homepage: "https://github.com/francoisthire/bam"
doc: "https://francoisthire.github.io/bam/"
bug-reports: "https://github.com/francoisthire/bam/issues"
depends: [
"ocaml"
"dune" {>= "3.7"}
"ppxlib" {<= "0.32.0"}
"dmap" {>= "0.5"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/francoisthire/bam.git"
url {
src:
"https://github.com/francoisthire/bam/releases/download/v0.2/bam-0.2.tbz"
checksum: [
"sha256=20ab139b2b82dd57a9a7542af8d9261ff95263d081c3fcb5e36d1424da0fcbb9"
"sha512=0058cf950183643e8abdf0acb6b34ab9898110bd883da930e6d2e404111be36b0e94cc15fe21522a3fd9c313b261b08a2e5a78464d35cba4b8a9695fb0a2df88"
]
}
x-commit-hash: "b5006a3f7692012576f982bfed5cb1098668073e"
43 changes: 43 additions & 0 deletions packages/bam/bam.0.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
opam-version: "2.0"
synopsis: "A property-based testing library with internal shrinking"
description:
"A property-based testing allowing to define generators with internal shrinking easily"
maintainer: ["François Thiré"]
authors: ["François Thiré"]
license: "MIT"
tags: ["test" "pbt" "shrinking" "internal"]
homepage: "https://github.com/francoisthire/bam"
doc: "https://francoisthire.github.io/bam/"
bug-reports: "https://github.com/francoisthire/bam/issues"
depends: [
"ocaml" {>= "4.14"}
"dune" {>= "3.7" & >= "3.7"}
"pringo"
"zarith" {>= "1.13"}
"odoc" {with-doc}
"tezt" {with-test}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/francoisthire/bam.git"
url {
src:
"https://github.com/francoisthire/bam/releases/download/v0.2/bam-0.2.tbz"
checksum: [
"sha256=20ab139b2b82dd57a9a7542af8d9261ff95263d081c3fcb5e36d1424da0fcbb9"
"sha512=0058cf950183643e8abdf0acb6b34ab9898110bd883da930e6d2e404111be36b0e94cc15fe21522a3fd9c313b261b08a2e5a78464d35cba4b8a9695fb0a2df88"
]
}
x-commit-hash: "b5006a3f7692012576f982bfed5cb1098668073e"
42 changes: 42 additions & 0 deletions packages/tezt-bam/tezt-bam.0.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
opam-version: "2.0"
synopsis: "A plugin of [bam] for Tezt"
description: "Provides a way to register PBT tests with Tezt"
maintainer: ["François Thiré"]
authors: ["François Thiré"]
license: "MIT"
tags: ["test" "tezt" "pbt" "shrinking" "internal" "bam"]
homepage: "https://github.com/francoisthire/bam"
doc: "https://francoisthire.github.io/bam/"
bug-reports: "https://github.com/francoisthire/bam/issues"
depends: [
"ocaml"
"dune" {>= "3.7"}
"tezt"
"bam"
"mtime" {>= "2.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/francoisthire/bam.git"
url {
src:
"https://github.com/francoisthire/bam/releases/download/v0.2/bam-0.2.tbz"
checksum: [
"sha256=20ab139b2b82dd57a9a7542af8d9261ff95263d081c3fcb5e36d1424da0fcbb9"
"sha512=0058cf950183643e8abdf0acb6b34ab9898110bd883da930e6d2e404111be36b0e94cc15fe21522a3fd9c313b261b08a2e5a78464d35cba4b8a9695fb0a2df88"
]
}
x-commit-hash: "b5006a3f7692012576f982bfed5cb1098668073e"

0 comments on commit d1f5226

Please sign in to comment.