summary refs log tree commit diff
path: root/lib/tests/modules/assertions/multi.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/modules/assertions/multi.nix')
-rw-r--r--lib/tests/modules/assertions/multi.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/tests/modules/assertions/multi.nix b/lib/tests/modules/assertions/multi.nix
deleted file mode 100644
index 1e2e14b8643..00000000000
--- a/lib/tests/modules/assertions/multi.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{
-
-  _module.checks = {
-    test1 = {
-      check = false;
-      message = "Assertion 1 failed";
-    };
-    test2 = {
-      check = false;
-      message = "Assertion 2 failed";
-    };
-    test3 = {
-      check = false;
-      message = "Warning 3 failed";
-      type = "warning";
-    };
-    test4 = {
-      check = false;
-      message = "Warning 4 failed";
-      type = "warning";
-    };
-  };
-}