(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func TestReadLongTerm_NoFile(t *testing.T) { |
| 39 | ms := NewMemoryStore(t.TempDir(), testLogger()) |
| 40 | content := ms.ReadLongTerm() |
| 41 | if content != "" { |
| 42 | t.Errorf("expected empty string, got %q", content) |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | func TestWriteDailyNote(t *testing.T) { |
| 47 | dir := t.TempDir() |
nothing calls this directly
no test coverage detected