(t *testing.T, repo *Repository)
| 25 | const content = "Herro, Worrd!" |
| 26 | |
| 27 | func readReadme(t *testing.T, repo *Repository) string { |
| 28 | bytes, err := ioutil.ReadFile(pathInRepo(repo, "README")) |
| 29 | if err != nil { |
| 30 | t.Fatal(err) |
| 31 | } |
| 32 | return string(bytes) |
| 33 | } |
| 34 | |
| 35 | func TestCherrypick(t *testing.T) { |
| 36 | t.Parallel() |
no test coverage detected
searching dependent graphs…