(t *testing.T)
| 134 | } |
| 135 | |
| 136 | func TestEnhanceSystemPromptCoding(t *testing.T) { |
| 137 | base := "You are an assistant." |
| 138 | result := EnhanceSystemPrompt(base, "coding") |
| 139 | if !strings.Contains(result, "minimal, correct code") { |
| 140 | t.Error("should add coding directives") |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | func TestEnhanceSystemPromptDefault(t *testing.T) { |
| 145 | base := "You are an assistant." |
nothing calls this directly
no test coverage detected