(t *testing.T)
| 544 | } |
| 545 | |
| 546 | func TestManagerClearWorktreeInfoNotFound(t *testing.T) { |
| 547 | m := NewManager(10, testProvider) |
| 548 | err := m.ClearWorktreeInfo("nonexistent", true) |
| 549 | if err == nil { |
| 550 | t.Error("expected error for nonexistent PRD") |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | func TestManagerUpdateWorktreeInfo(t *testing.T) { |
| 555 | tmpDir := t.TempDir() |
nothing calls this directly
no test coverage detected