1
0
mirror of https://github.com/nix-community/home-manager synced 2024-08-19 10:36:30 +02:00
home-manager/tests/modules/programs/granted/integration-disabled.nix

28 lines
591 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
programs = {
granted.enable = true;
granted.enableZshIntegration = false;
zsh.enable = true;
};
test.stubs.granted = { };
nmt.script = ''
assertFileExists home-files/.zshrc
assertFileNotRegex \
home-files/.zshrc \
'function assume()'
assertFileNotRegex \
home-files/.zshrc \
'export GRANTED_ALIAS_CONFIGURED="true"'
assertFileNotRegex \
home-files/.zshrc \
'source @granted@/bin/.assume-wrapped "$@"'
assertFileNotRegex \
home-files/.zshrc \
'unset GRANTED_ALIAS_CONFIGURED'
'';
}