about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/aszlig/i3.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/aszlig/i3.nix b/tests/aszlig/i3.nix
deleted file mode 100644
index 3c5a5c0c..00000000
--- a/tests/aszlig/i3.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ pkgs, ... }:
-
-{
-  name = "i3";
-
-  machine = { lib, ... }: {
-    imports = [
-      "${import ../../nixpkgs-path.nix}/nixos/tests/common/x11.nix"
-    ];
-
-    vuizvui.user.aszlig.profiles.base.enable = true;
-
-    vuizvui.user.aszlig.services.i3 = {
-      enable = true;
-
-      workspaces."1" = {
-        label = "first";
-        assign = lib.singleton { class = "^test\$"; };
-      };
-    };
-
-    services.xserver.windowManager.default = lib.mkForce "i3";
-    /* XXX */
-    fonts = {
-      enableCoreFonts = true;
-      enableFontDir = true;
-      enableGhostscriptFonts = true;
-      fonts = [
-        pkgs.dosemu_fonts
-        pkgs.liberation_ttf
-      ];
-    };
-    /* !XXX */
-  };
-
-  testScript = { nodes, ... }: ''
-    $machine->waitForX;
-    $machine->sleep(20);
-    $machine->screenshot("i3");
-  '';
-}