1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 07:31:03 +01:00
home-manager/tests/modules/programs/zsh/zprof.nix
Austin Horstman ae62fd8ad8 tests/zsh: add zprof test
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-07-12 11:42:00 -05:00

15 lines
265 B
Nix

{
config = {
programs.zsh = {
enable = true;
zprof.enable = true;
};
test.stubs.zsh = { };
nmt.script = ''
assertFileRegex home-files/.zshrc 'zmodload zsh/zprof'
assertFileRegex home-files/.zshrc '^zprof$'
'';
};
}