mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-06-06 05:51:19 +08:00
13 lines
471 B
Go
13 lines
471 B
Go
package agent
|
|
|
|
import "testing"
|
|
|
|
func TestCleanUserFacingReplyInstruction(t *testing.T) {
|
|
if cleanUserFacingReplyInstruction == "" {
|
|
t.Fatal("expected clean user-facing reply instruction to be defined")
|
|
}
|
|
if got, want := cleanUserFacingReplyInstruction, "Your final reply must be clean and easy to understand, with no fluff, no internal jargon, and no unnecessary explanation."; got != want {
|
|
t.Fatalf("unexpected instruction\nwant: %q\ngot: %q", want, got)
|
|
}
|
|
}
|