ocamlPackages.qcheck-stm: init at 0.2

This commit is contained in:
Vincent Laporte 2023-08-21 07:33:44 +02:00
parent 991356c807
commit 6698fd456e
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ buildDunePackage
, qcheck-multicoretests-util
}:
buildDunePackage {
pname = "qcheck-stm";
inherit (qcheck-multicoretests-util) src version;
propagatedBuildInputs = [ qcheck-multicoretests-util ];
doCheck = true;
meta = qcheck-multicoretests-util.meta // {
description = "State-machine testing library for sequential and parallel model-based tests";
};
}

View file

@ -1470,6 +1470,8 @@ let
qcheck-ounit = callPackage ../development/ocaml-modules/qcheck/ounit.nix { };
qcheck-stm = callPackage ../development/ocaml-modules/qcheck/stm.nix { };
qtest = callPackage ../development/ocaml-modules/qtest { };
### R ###