tests/patdiff: add

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-10-16 21:12:16 -05:00
parent c80be80282
commit 41fd9b197c
4 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{
programs.patdiff = {
enable = true;
};
programs.git.enable = true;
nmt.script = ''
# Git config should NOT contain patdiff configuration since enableGitIntegration is false by default
assertFileNotRegex home-files/.config/git/config 'external = .*/patdiff-git-wrapper'
'';
}