summary refs log tree commit diff
path: root/lib/tests/modules/loaOf-with-many-list-merges.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/modules/loaOf-with-many-list-merges.nix')
-rw-r--r--lib/tests/modules/loaOf-with-many-list-merges.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/tests/modules/loaOf-with-many-list-merges.nix b/lib/tests/modules/loaOf-with-many-list-merges.nix
deleted file mode 100644
index f8f8a8da82b..00000000000
--- a/lib/tests/modules/loaOf-with-many-list-merges.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ config, lib, ... }:
-
-{
-  options = {
-    loaOfInt = lib.mkOption {
-      type = lib.types.loaOf lib.types.int;
-    };
-
-    result = lib.mkOption {
-      type = lib.types.str;
-    };
-  };
-
-  config = {
-    loaOfInt = lib.mkMerge (map lib.singleton [ 1 2 3 4 5 6 7 8 9 10 ]);
-
-    result = toString (lib.attrValues config.loaOfInt);
-  };
-}