MCPcopy Create free account
hub / github.com/MiniCodeMonkey/chief / TestParseProgress_FileNotFound

Function TestParseProgress_FileNotFound

internal/prd/progress_test.go:175–183  ·  view source on GitHub ↗
(t *testing.T)

Source from the content-addressed store, hash-verified

173}
174
175func 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
185func TestParseProgress_EmptyFile(t *testing.T) {
186 tmpDir := t.TempDir()

Callers

nothing calls this directly

Calls 1

ParseProgressFunction · 0.85

Tested by

no test coverage detected