1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-02 23:21:02 +01:00

tests/claude-code: add path tests for agents/commands

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-09-16 21:43:58 -05:00
parent 846f27fba8
commit fb928abb67
6 changed files with 86 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{
programs.claude-code = {
enable = true;
commands = {
test-command = ./test-command.md;
};
};
nmt.script = ''
assertFileExists home-files/.claude/commands/test-command.md
assertFileContent home-files/.claude/commands/test-command.md \
${./test-command.md}
'';
}