about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-05-28 17:48:45 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-05-28 17:48:45 +0200
commitea85dd3eaf0cbd19ddf22f41391d092a21147063 (patch)
treee6d6f443c9921de565ccfdc5f7190d0272c637cc /tests
parent9bc65712570410c304d9667dd5faccc90fdb83ce (diff)
tests: Remove dummy test for i3
We already have an "i3wm" test in upstream <nixpkgs> which is much more
thorough than the unfinished test I've made here.

The intention of this test however was to specifically test the Vuizvui
service module. Nevertheless, it's still just a dummy test and the
"i3wm" test works much better, so let's remove it until we have a more
complete implementation.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
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");
-  '';
-}