clanLib.jsonschema: move tests from pkgs/clan-cli

This commit is contained in:
DavHau
2023-08-09 16:05:16 +02:00
parent 9438a9eb5f
commit 7262208a4c
12 changed files with 38 additions and 28 deletions

8
lib/jsonschema/test.nix Normal file
View File

@@ -0,0 +1,8 @@
# run these tests via `nix-unit ./test.nix`
{ lib ? (import <nixpkgs> { }).lib
, slib ? import ./. { inherit lib; }
}:
{
parseOption = import ./test_parseOption.nix { inherit lib slib; };
parseOptions = import ./test_parseOptions.nix { inherit lib slib; };
}