mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 07:00:48 +00:00
scmpuff: remove test dependency on zsh
This commit is contained in:
parent
3d93e1e802
commit
479e26dc8c
3 changed files with 9 additions and 0 deletions
|
@ -10,6 +10,9 @@
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nixpkgs.overlays =
|
||||||
|
[ (self: super: { zsh = pkgs.writeScriptBin "dummy" ""; }) ];
|
||||||
|
|
||||||
nmt.script = ''
|
nmt.script = ''
|
||||||
assertFileNotRegex home-files/.zshrc '${pkgs.scmpuff} init -s'
|
assertFileNotRegex home-files/.zshrc '${pkgs.scmpuff} init -s'
|
||||||
assertFileNotRegex home-files/.bashrc '${pkgs.scmpuff} init -s'
|
assertFileNotRegex home-files/.bashrc '${pkgs.scmpuff} init -s'
|
||||||
|
|
|
@ -8,6 +8,9 @@
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nixpkgs.overlays =
|
||||||
|
[ (self: super: { zsh = pkgs.writeScriptBin "dummy" ""; }) ];
|
||||||
|
|
||||||
nmt.script = ''
|
nmt.script = ''
|
||||||
assertFileNotRegex home-files/.zshrc '${pkgs.scmpuff} init -s'
|
assertFileNotRegex home-files/.zshrc '${pkgs.scmpuff} init -s'
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -5,6 +5,9 @@
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nixpkgs.overlays =
|
||||||
|
[ (self: super: { zsh = pkgs.writeScriptBin "dummy" ""; }) ];
|
||||||
|
|
||||||
nmt.script = ''
|
nmt.script = ''
|
||||||
assertFileExists home-files/.zshrc
|
assertFileExists home-files/.zshrc
|
||||||
assertFileContains \
|
assertFileContains \
|
||||||
|
|
Loading…
Reference in a new issue