mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 15:14:26 +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;
|
||||
};
|
||||
|
||||
nixpkgs.overlays =
|
||||
[ (self: super: { zsh = pkgs.writeScriptBin "dummy" ""; }) ];
|
||||
|
||||
nmt.script = ''
|
||||
assertFileNotRegex home-files/.zshrc '${pkgs.scmpuff} init -s'
|
||||
assertFileNotRegex home-files/.bashrc '${pkgs.scmpuff} init -s'
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
zsh.enable = true;
|
||||
};
|
||||
|
||||
nixpkgs.overlays =
|
||||
[ (self: super: { zsh = pkgs.writeScriptBin "dummy" ""; }) ];
|
||||
|
||||
nmt.script = ''
|
||||
assertFileNotRegex home-files/.zshrc '${pkgs.scmpuff} init -s'
|
||||
'';
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
zsh.enable = true;
|
||||
};
|
||||
|
||||
nixpkgs.overlays =
|
||||
[ (self: super: { zsh = pkgs.writeScriptBin "dummy" ""; }) ];
|
||||
|
||||
nmt.script = ''
|
||||
assertFileExists home-files/.zshrc
|
||||
assertFileContains \
|
||||
|
|
Loading…
Reference in a new issue