(t *testing.T)
| 173 | } |
| 174 | |
| 175 | func TestParseProgress_FileNotFound(t *testing.T) { |
| 176 | entries, err := ParseProgress("/nonexistent/progress.md") |
| 177 | if err != nil { |
| 178 | t.Errorf("expected nil error for missing file, got %v", err) |
| 179 | } |
| 180 | if entries != nil { |
| 181 | t.Errorf("expected nil entries for missing file, got %v", entries) |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | func TestParseProgress_EmptyFile(t *testing.T) { |
| 186 | tmpDir := t.TempDir() |
nothing calls this directly
no test coverage detected