diff options
| author | matthewcroughan <matt@croughan.sh> | 2022-04-12 19:47:48 +0100 |
|---|---|---|
| committer | matthewcroughan <matt@croughan.sh> | 2022-04-12 19:47:48 +0100 |
| commit | cc052779fba0d9f0efa5980f42661798598b2ed1 (patch) | |
| tree | ea1a1ee5115cbe60e7fd67a9f172d51e14ec196f /lib | |
| parent | lib: init flakes.nix (diff) | |
| download | nixpkgs-cc052779fba0d9f0efa5980f42661798598b2ed1.tar.gz | |
lib/tests: add test for callLocklessFlake
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/tests/misc.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/tests/misc.nix b/lib/tests/misc.nix index fcccf89cc888..9ca1d7ca50c7 100644 --- a/lib/tests/misc.nix +++ b/lib/tests/misc.nix @@ -22,6 +22,15 @@ in runTests { +# FLAKES + + testCallLocklessFlake = { + expr = callLocklessFlake { + path = ./..; + inputs = {}; + }; + expected = { lib = import ./..; outPath = ./..; }; + }; # TRIVIAL |
