Valentin Chaboche
Valentin Chaboche
I have opened several issues that I believe should be fixed before we release the deriver. - [ ] #191 - [ ] #190 - [ ] #189 - [x]...
As we are adding tests thanks to @jmid, we could add bisect_ppx to produce a coverage report.
@tomsib2001: > Should merlin know a value gen_toto or toto : arbitrary after the above definition? Yes.
Closes #205 if we want #205 obviously :)
For instance: ```ocaml # open QCheck;; # let arb = pair small_int (always 0);; val arb : (int * int) QCheck.arbitrary = {gen = ; print = None; small =...
The deriver should create QCheck and QCheck2 generators. The choice could be given in the deriver's plugin name: `[@@deriving qcheck]` and `[@@deriving qcheck2]`.
Deriver in implementation file was done in #171, deriver in interface files is not essential but should exist at some point. ```ocaml (* foo.mli *) type t [@@deriving qcheck] (*...
In any case, I wish the current status of core/QCheck.ml vs. core/QCheck2.ml was clearly stated somewhere, for example in the README, so that other occasional contributors know what to do....
People were kind of fan of Crowbar because of Afl-fuzzing. I'm not fully aware about the witchcraft afl does, but it could be added as an optional way of generating...
Hey, I'm starting to use prometheus, here's a minor problem I've occured: The documentation says that `CollectorRegistry.create` is ["mostly useful for testing"](https://github.com/mirage/prometheus/blob/master/src/prometheus.mli#L80). However, it happens to be more useful in...