(t *testing.T, p string, dir string)
| 365 | } |
| 366 | |
| 367 | func hasDir(t *testing.T, p string, dir string) { |
| 368 | t.Helper() |
| 369 | |
| 370 | w := newPattern(t, p) |
| 371 | |
| 372 | assert.Equal(t, normalizePath(t, dir), w.value) |
| 373 | } |
| 374 | |
| 375 | func assertPatternMatch(t *testing.T, p, fileName string) { |
| 376 | t.Helper() |
no test coverage detected