(t *testing.T, relativePath string)
| 356 | } |
| 357 | |
| 358 | func relativeDir(t *testing.T, relativePath string) string { |
| 359 | t.Helper() |
| 360 | |
| 361 | dir, err := filepath.Abs("./" + relativePath) |
| 362 | assert.NoError(t, err) |
| 363 | |
| 364 | return dir |
| 365 | } |
| 366 | |
| 367 | func hasDir(t *testing.T, p string, dir string) { |
| 368 | t.Helper() |
no outgoing calls
no test coverage detected