tests/gemini-cli: add context tests

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-10-12 17:21:01 -05:00
parent e2d346936e
commit 5ead1867bb
4 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{
programs.gemini-cli = {
enable = true;
context = ./context.md;
};
nmt.script = ''
assertFileExists home-files/.gemini/GEMINI.md
assertFileContent home-files/.gemini/GEMINI.md \
${./context.md}
'';
}