aboutsummaryrefslogtreecommitdiff
path: root/tests/default.nix
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2019-01-14 23:02:33 +0100
committerRobert Helgesson <robert@rycee.net>2019-01-14 23:02:33 +0100
commitf6ec26075d6d617b1ed7e82cabdfcb6f92ab9da7 (patch)
tree51b78b7fccdaba130a481425b0e513cbb57dea91 /tests/default.nix
parentc42206db028b25e689a52c3a74c15397312effdb (diff)
tests: simplify test names
Diffstat (limited to 'tests/default.nix')
-rw-r--r--tests/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/default.nix b/tests/default.nix
index f7873f4b84a..9946b4e3e7b 100644
--- a/tests/default.nix
+++ b/tests/default.nix
@@ -16,11 +16,11 @@ import nmt {
modules = import ../modules/modules.nix { inherit pkgs; lib = pkgs.lib; };
testedAttrPath = [ "home" "activationPackage" ];
tests = {
- "git/with-most-options" = ./modules/programs/git.nix;
- "git/with-str-extra-config" = ./modules/programs/git-with-str-extra-config.nix;
+ git-with-most-options = ./modules/programs/git.nix;
+ git-with-str-extra-config = ./modules/programs/git-with-str-extra-config.nix;
texlive-minimal = ./modules/programs/texlive-minimal.nix;
xresources = ./modules/xresources.nix;
} // pkgs.lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
- "i3/keybindings" = ./modules/services/window-managers/i3-keybindings.nix;
+ i3-keybindings = ./modules/services/window-managers/i3-keybindings.nix;
};
}