zaphyra's git: haumea

fork of https://github.com/nix-community/haumea

commit b915b66b27da3a595d77b139e945bb0a2fcac926
parent 828fcac006f534f83071e5ed5b0280a5391aa95e
Author: figsoda <figsoda@pm.me>
Date: Mon, 10 Apr 2023 21:23:29 -0400

tests: add more nesting to hoistAttrs
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/tests/hoistAttrs/__fixture/baz/default.nix b/tests/hoistAttrs/__fixture/bar/baz/default.nix
diff --git a/tests/hoistAttrs/__fixture/bar.nix b/tests/hoistAttrs/__fixture/bar/default.nix
diff --git a/tests/hoistAttrs/expected.nix b/tests/hoistAttrs/expected.nix
@@ -1,10 +1,11 @@
 {
   options = {
     root = "option";
-    bar.tul = "option";
-    baz.qui = "option";
+    bar = {
+      baz.qui = "option";
+      tul = "option";
+    };
   };
   foo = "foo";
-  bar = { };
-  baz = { qux = "qux"; };
+  bar.baz.qux = "qux";
 }