1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/claude-code/mixed-content.nix
Austin Horstman fb928abb67 tests/claude-code: add path tests for agents/commands
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-09-17 00:07:05 -05:00

38 lines
984 B
Nix

{
programs.claude-code = {
enable = true;
commands = {
inline-command = ''
---
allowed-tools: Read
description: Inline command
---
This command is defined inline.
'';
path-command = ./test-command.md;
};
agents = {
inline-agent = ''
---
name: inline-agent
description: Inline agent
tools: Read
---
This agent is defined inline.
'';
path-agent = ./test-agent.md;
};
};
nmt.script = ''
assertFileExists home-files/.claude/commands/inline-command.md
assertFileExists home-files/.claude/commands/path-command.md
assertFileExists home-files/.claude/agents/inline-agent.md
assertFileExists home-files/.claude/agents/path-agent.md
assertFileContent home-files/.claude/commands/path-command.md \
${./test-command.md}
assertFileContent home-files/.claude/agents/path-agent.md \
${./test-agent.md}
'';
}