(t *testing.T, dir, sub string)
| 24 | } |
| 25 | |
| 26 | func mkTestDir(t *testing.T, dir, sub string) { |
| 27 | t.Helper() |
| 28 | require.NoError(t, os.MkdirAll(filepath.Join(dir, sub), 0755)) |
| 29 | } |
| 30 | |
| 31 | // generateAndWriteQuickstartConfig bridges the old test signature to |
| 32 | // replaceDetectionSub + (*cli).WriteQuickstartConfig. |
no outgoing calls
no test coverage detected