(t *testing.T, dir, name, description string)
| 38 | } |
| 39 | |
| 40 | func writeSkillMetaFile(t *testing.T, dir, name, description string) string { |
| 41 | t.Helper() |
| 42 | return writeSkillMetaFileInRoot(t, filepath.Join(dir, ".agents", "skills"), name, description) |
| 43 | } |
| 44 | |
| 45 | //nolint:paralleltest,tparallel // Uses t.Setenv to isolate HOME. |
| 46 | func TestContextPartsFromDir(t *testing.T) { |
no test coverage detected