depot/third_party/home-manager/tests/modules/programs/scmpuff/zsh.nix

21 lines
313 B
Nix
Raw Normal View History

{ ... }:
{
programs = {
scmpuff.enable = true;
zsh.enable = true;
};
test.stubs = {
zsh = { };
scmpuff = { };
};
nmt.script = ''
assertFileExists home-files/.zshrc
assertFileContains \
home-files/.zshrc \
'eval "$(@scmpuff@/bin/scmpuff init --shell=zsh)"'
'';
}