home-manager/tests/modules/programs/broot/broot.nix
Thiago Kenji Okada fcc4259cdb
treewide: stub tests (#6275)
* ranger: stub tests

* alacritty: stub tests

* broot: stub tests

* zsh: stub tests

* vim-vint: stub tests
2025-01-08 16:24:04 +01:00

18 lines
298 B
Nix

{ ... }:
{
programs.broot = {
enable = true;
settings.modal = true;
};
tests.stubs = {
broot = { };
hjson = { };
};
nmt.script = ''
assertFileExists home-files/.config/broot/conf.toml
assertFileContains home-files/.config/broot/conf.toml 'modal = true'
'';
}