(t *testing.T)
| 74 | } |
| 75 | |
| 76 | func TestPRTitleFromPRD(t *testing.T) { |
| 77 | p := &prd.PRD{ |
| 78 | Project: "Git Worktree Support", |
| 79 | } |
| 80 | got := PRTitleFromPRD("worktrees", p) |
| 81 | want := "feat(worktrees): Git Worktree Support" |
| 82 | if got != want { |
| 83 | t.Errorf("PRTitleFromPRD() = %q, want %q", got, want) |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | func TestPRBodyFromPRD(t *testing.T) { |
| 88 | t.Run("includes summary and completed stories", func(t *testing.T) { |
nothing calls this directly
no test coverage detected