(t *testing.T)
| 49 | } |
| 50 | |
| 51 | func TestMemoryPluginAdapter_NoStore(t *testing.T) { |
| 52 | a := &memoryPluginAdapter{cli: &ChatCLI{}} |
| 53 | if _, err := a.Remember("x", ""); err == nil { |
| 54 | t.Error("expected error with no memory store") |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | func TestFormatMemoryNotice(t *testing.T) { |
| 59 | // Empty summary -> empty notice. |