(t *testing.T)
| 143 | } |
| 144 | |
| 145 | func TestBuildDeployPRMetadata_MultipleWorkflows(t *testing.T) { |
| 146 | title, body := buildDeployPRMetadata([]string{"a", "b", "c"}, "owner/repo") |
| 147 | assert.Equal(t, deployCommitMessage, title) |
| 148 | assert.Contains(t, body, "Deploy 3 workflows to owner/repo.") |
| 149 | } |
| 150 | |
| 151 | func TestExcludeExistingSourcedWorkflows_SkipsExistingSourcedWorkflow(t *testing.T) { |
| 152 | t.Parallel() |
nothing calls this directly
no test coverage detected