about summary refs log tree commit diff
path: root/lib/tests
diff options
context:
space:
mode:
authormatthewcroughan <matt@croughan.sh>2022-04-12 19:47:48 +0100
committermatthewcroughan <matt@croughan.sh>2022-04-12 19:47:48 +0100
commitcc052779fba0d9f0efa5980f42661798598b2ed1 (patch)
treeea1a1ee5115cbe60e7fd67a9f172d51e14ec196f /lib/tests
parentcad8bbe58905a14651a469be78f89cad55ee7c15 (diff)
lib/tests: add test for callLocklessFlake
Diffstat (limited to 'lib/tests')
-rw-r--r--lib/tests/misc.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/tests/misc.nix b/lib/tests/misc.nix
index fcccf89cc888c..9ca1d7ca50c7a 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