From ea85dd3eaf0cbd19ddf22f41391d092a21147063 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 28 May 2016 17:48:45 +0200 Subject: tests: Remove dummy test for i3 We already have an "i3wm" test in upstream 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 --- tests/aszlig/i3.nix | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 tests/aszlig/i3.nix (limited to 'tests') 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"); - ''; -} -- cgit 1.4.1