(t *testing.T)
| 579 | } |
| 580 | |
| 581 | func TestManagerUpdateWorktreeInfoNotFound(t *testing.T) { |
| 582 | m := NewManager(10, testProvider) |
| 583 | err := m.UpdateWorktreeInfo("nonexistent", "/tmp", "branch") |
| 584 | if err == nil { |
| 585 | t.Error("expected error for nonexistent PRD") |
| 586 | } |
| 587 | } |
| 588 | |
| 589 | func TestManagerUpdateWorktreeInfoOverwrite(t *testing.T) { |
| 590 | tmpDir := t.TempDir() |
nothing calls this directly
no test coverage detected