(t testing.TB, te testEnv, p string, data []byte)
| 170 | } |
| 171 | |
| 172 | func putFile(t testing.TB, te testEnv, p string, data []byte) { |
| 173 | p = filepath.Join(te.Dir, p) |
| 174 | require.NoError(t, os.WriteFile(p, data, 0644)) |
| 175 | } |
| 176 | |
| 177 | func gitInit(t testing.TB, te testEnv) { |
| 178 | cmd(t, te, "git", "init", |
no outgoing calls
no test coverage detected