(t *testing.T)
| 124 | } |
| 125 | |
| 126 | func TestFormatBranchPathFull(t *testing.T) { |
| 127 | p := &PRDPicker{} |
| 128 | |
| 129 | result := p.formatBranchPath("chief/auth", ".chief/worktrees/auth/", 50) |
| 130 | expected := " chief/auth .chief/worktrees/auth/" |
| 131 | if result != expected { |
| 132 | t.Errorf("expected %q, got %q", expected, result) |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | func TestFormatBranchPathTruncatesPath(t *testing.T) { |
| 137 | p := &PRDPicker{} |
nothing calls this directly
no test coverage detected