(t *testing.T)
| 80 | } |
| 81 | |
| 82 | func (r *gitRepo) config(t *testing.T) { |
| 83 | t.Helper() |
| 84 | r.run(t, "config", "user.email", "test@example.com") |
| 85 | r.run(t, "config", "user.name", "test") |
| 86 | r.run(t, "config", "commit.gpgsign", "false") |
| 87 | r.run(t, "config", "tag.gpgsign", "false") |
| 88 | } |
| 89 | |
| 90 | func (r *gitRepo) commit(t *testing.T, msg string) { |
| 91 | t.Helper() |
no test coverage detected